Surprisingly easy to get set up. Here’s the steps:
** Init Your Lein Project **
If you don’t already have an existing lein project setup, run lein new [proj name]
in order to get a lein project setup. This will give you a project.clj file which is necessary for following steps.
** Download the MS SQL JDBC Jars**
At the time of writing, these are here.
** Add the Jars to Your Project **
To do this:
/resources
directory:resource-paths ["resources/sqljdbc4.jar" "resources/sqljdbc.jar"]
** Add Clojure JDBC Jars **
Also ensure that you have the following dependencies registered in your project.clj.
:dependencies [
[org.clojure/clojure "1.6.0"]
[org.clojure/java.jdbc "0.3.6"]
])
After you have done this, run lein deps
to install the dependencies.
** Add The Code! **
Last step! Here is some example code that connects to sql azure and runs a query:
(ns cljs-sqltest.core
;; register the jdbc namespace here
(:use [clojure.java.jdbc])
)
(def db-spec {:classname "com.microsoft.jdbc.sqlserver.SQLServerDriver"
:subprotocol "sqlserver"
:subname "//your.db.address:1433;Initial Catalog=dbname;"
:database "dbname"
:user "dbusername"
:password "dbpassword"})
(with-db-connection [connection db-spec]
(let [rows (query connection
["select * from People"])]
;; this would output the "name" column in the People db
(doseq [row rows] (println (:name row)))))
Not bad!