
If you were logged in you would be able to see more operations.
|
|
|
A generated keys query with a insert statement with a space in the (quoted) table name results in a token recognition error
PreparedStatement pstmt = con.prepareStatement("INSERT INTO \"IDENTITY TABLE\" (theValue) VALUES (?)", Statement.RETURN_GENERATED_KEYS)
line 1:12 token recognition error at: '"IDENTITY '
line 1:27 token recognition error at: '" '
Note that the insert statement works, but it will not output generated keys.
|
Description
|
A generated keys query with a insert statement with a space in the (quoted) table name results in a token recognition error
PreparedStatement pstmt = con.prepareStatement("INSERT INTO \"IDENTITY TABLE\" (theValue) VALUES (?)", Statement.RETURN_GENERATED_KEYS)
line 1:12 token recognition error at: '"IDENTITY '
line 1:27 token recognition error at: '" '
Note that the insert statement works, but it will not output generated keys. |
Show » |
|