-
Type:
Task
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 2.6.1
-
Component/s: JDBC compatibility
-
Labels:None
Escaping can be a real source of slowdown for very large query.
JDBC permit a solution with statement.setEscapeProcessing, to indicate to avoid escaping (to be called prior to execution).
This task is to implement this method.
example of use :
try (Statement stmt = connection.createStatement()) { |
statement.setEscapeProcessing(false); |
statement.execute(myVeryLargeQuery);
|
}
|
- relates to
-
CONJ-785 jdbc insert query throws SQLSyntaxErrorException (unknown escape sequence) with 2.6.0 j-connector
-
- Closed
-