Next.jdbc: Can it be used for 'WHERE IN' statements to an Oracle Database?

Is it possible to use the methodology outlined here Tips & Tricks — seancorfield/next.jdbc 1.2.659 in the Working with Arrays section for a SELECT statement with a WHERE IN clause?
e.g. (jdbc/execute! ds [“SELECT * FROM EXAMPLE WHERE TAGS IN (?)” (into-array String [“Tag1” “Tag2”])])
or via another approach using next.jdbc?

Have you tried it? If so, what happened?

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.