database wrapper lib

2013-06-21 Thread serialhex
Hi all, I'm looking for a decent database wrapper library. I'm probably going to end up using PostgrSQL maybe SQLite for testing. I've looked at Korma a few others, but I'm getting lost on how to *actually use* them. I'm new to Clojure, so something with a good tutorial would be best!

Re: database wrapper lib

2013-06-21 Thread Michael Klishin
2013/6/21 serialhex serial...@gmail.com Hi all, I'm looking for a decent database wrapper library. Relational databases: https://github.com/clojure/java.jdbc (this one is not very extensively documented but is also small compared to Korma) MongoDB: http://clojuremongodb.info Cassandra:

Re: database wrapper lib

2013-06-21 Thread serialhex
Hey, thanks for the links!! I searched around but never found those, this helps a lot!!! Justin On Fri, Jun 21, 2013 at 11:56 AM, Michael Klishin michael.s.klis...@gmail.com wrote: 2013/6/21 serialhex serial...@gmail.com Hi all, I'm looking for a decent database wrapper library.

Re: database wrapper lib

2013-06-21 Thread Carlo Zancanaro
Hey Justin, I'm also working on a wrapper lib for SQL queries (which can optionally use jdbc for performing the queries). At the moment it's pretty new, so it might not actually work for you, but if you want to take a look the code's at https://bitbucket.org/czan/clojure-sql. It's also been

Re: database wrapper lib

2013-06-21 Thread Sean Corfield
On Fri, Jun 21, 2013 at 8:56 AM, Michael Klishin michael.s.klis...@gmail.com wrote: Relational databases: https://github.com/clojure/java.jdbc (this one is not very extensively documented but is also small compared to Korma) FYI, Korma is built on top of java.jdbc and if you want a different