up vote 19 down vote favorite
6
share [g+] share [fb]

What methods to use a database from Clojure are there?

I know from Clojure you can do anything you can with Java, but that means that I may end up using something overly complicated (like Hibernate) which clashes with Clojure simplicity. Any recommendations or comments?

link|improve this question

78% accept rate
feedback

8 Answers

up vote 12 down vote accepted

clojure-contrib has an sql library which is a thin wrapper around JDBC (java.sql.DriverManager). The test file that comes with it has some examples of its usage.

link|improve this answer
clojure-contrib has moved. It's here now: code.google.com/p/clojure-contrib – Rollo Tomazzi Oct 21 '09 at 7:06
5  
Actually it moved twice since I posted this. It's now here: github.com/richhickey/clojure-contrib :) – Brian Carper Oct 21 '09 at 8:43
you should look at clojure ql too. – nickik Nov 11 '10 at 18:51
1  
And moved (better: deprecated) again. Get your libraries directly from github.com/clojure – dermatthias May 9 '11 at 16:35
feedback

If you are open to using a Java library but want something that embraces simplicity, perhaps you'll like Persist. It'll only take you 10 minutes to have a look and see if it fits your needs.

link|improve this answer
feedback

There's ClojureQL which embraces relational algebra.

link|improve this answer
feedback

I'd like to add an as-of-Nov-2011 answer for the sake of anybody coming here from Google.

The current core SQL access library in Clojure 1.3 is clojure.java.jdbc. There are some very good libraries built on top of this like ClojureQL and Korma.

link|improve this answer
feedback

I've used Berkeley DB for a simple key/value database in Clojure. See here.

link|improve this answer
feedback

I would now (as of late 2011) recommend Korma - "Tasty SQL for Clojure"

It's a beautiful little SQL DSL, here's an example from the website:

(select users
  (aggregate (count :*) :cnt)
  (where (or (> :visits 20)
             (< :last_login a-year-ago))))
link|improve this answer
feedback

If you need persistent connections and/or connections to multiple databases and do not want to reestablish connections every so often I would recommend using DB connection pools. Something like BoneCP or Tomcat CP.

You can supply DataSources from those packages to (clojure.contrib.sql/with-connection ...) like done here.

link|improve this answer
feedback

You could also try CLJ-Record, https://github.com/duelinmarkers/clj-record

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.