I am trying to do a simple update statement on Oracle DB using clojure.java.jdbc.
(sql/db-do-prepared db "update table_name set active = 1 where id in (?)" ["one" "two"])
but I am getting:
java.sql.SQLException: Invalid column index
I am sure that all datatypes are correct. It looks like that kind of constructions are not permitted with clojure.java.jdbc. Any feedback is highly appreciated