Configure our JDBC interface to not downcase column names in result sets.

This commit is contained in:
Richard Newman 2016-08-30 17:43:05 -07:00
parent 9f97cc8f2d
commit 14a6a9bebb

View file

@ -31,6 +31,7 @@
(defn open
[path & {:keys [mode]}]
(let [spec {:classname "org.sqlite.JDBC"
:identifiers identity
:subprotocol "sqlite"
:subname path}] ;; TODO: use mode.
(go-pair