Hi there folks, is there a way to set driver parameters in clojure.java.jdbc
? Basically I need to set autosave=conservative
Like below:
https://stackoverflow.com/questions/2783813/postgres-error-cached-plan-must-not-change-result-type
oh I might be able to use the url https://jdbc.postgresql.org/documentation/head/connect.html#connection-parameters but is there an alternative?
Just add them to the db-spec hash map.
:autosave "conservative"
along with :dbtype
, :dbname
, etc.