@seancorfield how can I keep case, for example: select my_name as myName
from foo; But the result map is always coming in small case.
@gdrte See http://clojure-doc.org/articles/ecosystem/java_jdbc/using_sql.html#clojure-identifiers-and-sql-entities
FWIW, next.jdbc
preserves case by default, but also qualifies the column names with the table name they came from.
Thank you, I’ll give it a try.
Both clojure.java.jdbc
and next.jdbc
let you specify how you want your Clojure identifiers named -- they just have different defaults.