hi everyone, how do i get honey to resolve the ? everywhere?
(sql/format {:select [:a :b: :c]
:from [:foo]
:where [:= :f.a "baz"]})
=> ["SELECT a, b, c FROM foo WHERE f.a = ?" "baz"]
=> Would like ["SELECT a, b, c FROM foo WHERE f.a =\ "baz\""]
basically how do i get it to resolve the prepared statements
The whole point of HoneySQL is to generate input for clojure.java.jdbc
which uses prepared statements.
HoneySQL itself knows nothing about JDBC @ben.mumford620