> Which database would be easiest to work with in Clojure for local > storage?
There are several local storage databases that you can choose from: Derby, HSQL, H2, SQLite, Axion, Mckoi, Firebird etc. I tend to prefer H2 in general personally. Some of these databases support both in- memory (volatile) and on-filesystem storage – the JDBC URL differs for the different cases so be careful while connecting. Clj-DBCP [1] helps to connect to the different kinds of databases with connection API for each database. [1] Clj-DBCP https://bitbucket.org/kumarshantanu/clj-dbcp Shantanu -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en