Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
jdbc-3.1.1
-
None
-
None
Description
When using JDBC to insert data into the oracle database, if the target field is lowercase, an error will be reported.
An example input format is "insert into tableName(ID, `"name"`) values(1, 'test')".
The reason for the error is that there is a problem with the judgment logic in the
FieldNamedPreparedStatementImpl.java. The judgment logic will treat double quotes as delimiters.