Is there any way to convert a parametrized sql statement like ["SELECT * FROM USER WHERE ID = ?" 9]
to a prepared statement in clojure.jdbc? The prepare statement only accepts a string and not a vector
Apologies for the cross post from beginners
If you mean clojure.java.jdbc
, no, there is not. It is possible in next.jdbc
though @frozenfire1992
Thank you Sean, will look at employing next.jdbc