ClojureQL is an abstraction layer sitting on top of standard low-level JDBC SQL integration. It lets you interact with a database through a series of objects which work as Clojure data types.
ClojureQL is modeled around the primitives defined in Relational Algebra. http://en.wikipedia.org/wiki/Relational_algebra
For the user, this means that all queries compose and are never executed unless dereferenced or called with a function that has the ! suffix.
As a help for debugging, wrap your statements in (binding [*debug* true]) to see the compiled SQL statement printed to stdout.
Add the following to your project.clj or pom.xml:
Cake/Lein artifact:
[clojureql "1.0.4"]
Maven:
<dependency>
<groupId>clojureql</groupId>
<artifactId>clojureql</artifactId>
<version>1.0.4</version>
</dependency>
Then execute
cake deps
And import the library into your namespace
(:use clojureql.core)
Please visit ClojureQL.org for updated documentation.
ClojureQL is primarily developed by Lau Jensen of Best In Class.
Large and significant contributions to both the design and codebase have been rendered by Justin Balthrop aka. ninjudd author of the powerful build tool Cake.
In addition, the following people have made important contributions to ClojureQL:
Eclipse Public License - v 1.0, see LICENSE.
Can you improve this documentation? These fine people already did:
Lau B. Jensen, Herwig Hochleitner, ninjudd, Richard Hull, Sean Duckett & bendlasEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close