Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
Description
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);
|
}
|
Attachments
Issue Links
- relates to
-
CONJ-785 jdbc insert query throws SQLSyntaxErrorException (unknown escape sequence) with 2.6.0 j-connector
- Closed