79482231

Date: 2025-03-03 21:58:46
Score: 1
Natty:
Report link

Ultimately it came down to what to use in the statement "IN" or "ANY". I've Changed to "ANY" and it works as expected

PreparedStatement myStatement =  connection.prepareStatement(
                """
                        SELECT path
                        FROM   my_table
                        WHERE  path = ANY ( ? )
                        """);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: P. M.