Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Client prepared statement has a parsing error on escaped ' / " in string.
example to reproduce :
try (PreparedStatement preparedStatement = connection.prepareStatement("select '\\'' as a, ? as b, \"\\\"\" as c, ? as d")) { |
preparedStatement.setString(1, "val"); |
preparedStatement.setString(2, "val2"); |
ResultSet rs = preparedStatement.executeQuery();
|
}
|
|
Attachments
Issue Links
- is blocked by
-
CONJ-664 SQLException when backslash (\), which doesn't escape any character, is used together with setParameter()
- Closed