JDBC Type 4 Driver Programmer's Reference

[back to the top]
29026 HY000 Transaction can't be committed or rolled back
when AutoCommit mode is on
Cause: An attempt was made to commit a transaction while AutoCommit mode is enabled.
Effect: The transaction is not committed.
Recovery: Disable AutoCommit. Use the method only when the AutoCommit mode is
disabled.
[back to the top]
29027 HY011 SetAutoCommit not possible, since a
transaction is active
Cause: An attempt was made to call the setAutoCommit() mode while a transaction was
active.
Effect: The current AutoCommit mode is not modified.
Recovery: Complete the transaction, then attempt to set the AutoCommit mode.
[back to the top]
29029 HY011 SetTransactionIsolation not possible, since a
transaction is active
Cause: An attempt was made to set transaction isolation level while a transaction was active.
Effect: Attempts to change the transaction isolation level for this Connection object fail.
Recovery: Complete the transaction, then attempt to set the transaction isolation level.
[back to the top]
29031 HY000 SQL SELECT statement in batch is illegal
Cause: A SELECT SQL statement was used in the executeBatch() method.
Effect: An exception is reported; the SELECT SQL query cannot be used in batch queries.
Recovery: Use the executeQuery() method to issue the SELECT SQL statement.
[back to the top]