Skip to content

Instantly share code, notes, and snippets.

@ostronom
Created March 6, 2011 21:54
Show Gist options
  • Save ostronom/857725 to your computer and use it in GitHub Desktop.
Save ostronom/857725 to your computer and use it in GitHub Desktop.
(ns cljblog.db
(:refer-clojure :exclude [compile distinct drop take sort conj! disj!])
(:use clojureql.core))
(def *db*
{:classname "com.mysql.jdbc.Driver"
:subprotocol "mysql"
:user "root"
:password ""
:auto-commit true
:fetch-size 500
:useUnicode "yes"
:characterSetResults "UTF-8"
:characterEncoding "UTF-8"
:subname "//localhost:3306/cljblog"})
(open-global *db*)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment