summaryrefslogtreecommitdiff
path: root/test/clojure_sql/core_test.clj
AgeCommit message (Expand)Author
2013-05-15Split out core into compiler/dsl/query....The query namespace really only exists because I didn't want to put it in dsl, but I couldn't put it in core without a circular dependency. Users should only have to :require core to do things, though. It just aliases other stuff to make that work. Carlo Zancanaro
2013-05-14Parametrise deref behaviour, add two small tests....Now a user can decide what the query's behaviour on deref should be. This means a user using jdbc can plug in with (set-query-deref-behaviour! #(... jdbc-query-code-here ...)) if they want, but if a user wants to use the code for something else then they can do so without needing to import jdbc stuff. (I'll admit I'm not sure what else they'd do with it, but that's slightly beside the point.) Still left to do is to provide a helper for the common case (performing an SQL query with jdbc). Carlo Zancanaro