Re: Good database for local storage in Clojure

2012-01-11 Thread Jeb Beich
sqlite (www.sqlite.org) is another obvious choice, right? On Jan 10, 2012 9:46 PM, "Sean Corfield" wrote: -- 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 a

Re: Good database for local storage in Clojure

2012-01-10 Thread Shantanu Kumar
> 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 (volati

Re: Good database for local storage in Clojure

2012-01-10 Thread Sean Corfield
On Tue, Jan 10, 2012 at 7:24 PM, jk wrote: > HSQLDB (http://hsqldb.org/) and Derby (http://db.apache.org/derby/) > are both fairly popular databases that are small enough to embed right > in your program. Your data is tiny. You might not even need a database > at all but in any case, these are sma

Re: Good database for local storage in Clojure

2012-01-10 Thread jk
HSQLDB (http://hsqldb.org/) and Derby (http://db.apache.org/derby/) are both fairly popular databases that are small enough to embed right in your program. Your data is tiny. You might not even need a database at all but in any case, these are small and easy to use with Java or Clojure. On Jan 10,

Good database for local storage in Clojure

2012-01-10 Thread Adam Markham
I am looking for a database which I can use to store data about certain stock over a number of years. There will probably be a few thousand records to store. I am writing an application in Clojure and Java, but mostly Clojure, which will pull out data from this local database when required to displ