Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-15 | Split out core into compiler/dsl/query. | Carlo Zancanaro | |
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. | |||
2013-05-14 | Parametrise deref behaviour, add two small tests. | Carlo Zancanaro | |
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). |