funcool / clojure.jdbc

JDBC library for Clojure
http://funcool.github.io/clojure.jdbc/latest/
Apache License 2.0
105 stars 26 forks source link

Adds metadata->identifiers option to resultset/result-set->lazyseq. #28

Closed scusack closed 7 years ago

scusack commented 8 years ago

If provided is called to convert metadata to column identifiers.

Useful if you need to swizzle the identifier based upon the type, eg adding a ? to bools.

niwinz commented 8 years ago

This already can be implemented as post processing the result I think, that do you think?