honeysql

Discussion of https://github.com/seancorfield/honeysql :slightly_smiling_face:
deva 2019-05-12T22:28:04.016200Z

@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.

seancorfield 2019-05-12T22:37:33.017400Z

FWIW, next.jdbc preserves case by default, but also qualifies the column names with the table name they came from.

deva 2019-05-12T22:39:35.018200Z

Thank you, I’ll give it a try.

seancorfield 2019-05-12T22:41:30.019Z

Both clojure.java.jdbc and next.jdbc let you specify how you want your Clojure identifiers named -- they just have different defaults.

1