vote up 11 vote down star
4

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 Hybernate) which clashes with Clojure simplicity. Any recommendations or comments?

flag

74% accept rate

3 Answers

vote up 7 vote down check

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|flag
clojure-contrib has moved. It's here now: code.google.com/p/clojure-contrib – Rollo Tomazzi Oct 21 at 7:06
Actually it moved twice since I posted this. It's now here: github.com/richhickey/clojure-contrib :) – Brian Carper Oct 21 at 8:43
vote up 3 vote down

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|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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