Fork me on GitHub
#sql
<
2021-09-02
>
V13:09:05

I am trying to convert from clojure.java.jdbc to next.jdbc. We have extended some protocols for java.jdbc ISQLValue and ISQLParameter . I have converted to SettableParameter, however i am unable to find the equivalent of next.jdbc for ISQLValue can someone point me in the right direction?

seancorfield15:09:39

@sebastian.veile They are replaced by a single protocol. Having two protocols was a mistake in c.j.j -- as I recall ISQLValue was added first but it didn't do enough so ISQLParameter was added so folks could control how the value was set, rather than just how the value was transformed.