JDBC Driver for SQL/MX Programmer's Reference

29076 HY000 Exceeded 'maxStatements' ({0,number,integer})
-- performance may be compromised
Cause: The cached statement count has reached the limit set by the maxStatements
property and all statements are in use.
Effect: An exception is thrown to indicate that the maxStatements limit has been exceeded.
Recovery: Use the maxStatements property to increase the number of statements allowed.
[back to the top]
Messages From the JNI Side of the
JDBC/MX Driver
29251 HY000 Programming Error
Cause: Either SQL has detected an error in one of the SQL parameters for a statement or SQL
returned an error for an operation that was attempted but that is not handled by JDBC.
Effect: An exception is reported.
Recovery: For SQL parameter errors, the exception-message text usually identifies the problem
to be corrected. For unhandled SQL errors, the Error Code of the exception identifies the SQL
error that was caught. Refer to the SQL error-message documentation for details about the error
code.
[back to the top]
29252 HY008 Operation Cancelled
Cause: An SQL operation was cancelled by a break
Effect: An exception is reported; the operation is not completed.
Recovery: This message is application-specific. Issue the statement again.
[back to the top]
29253 22003 Numeric value out of range
Cause: A numeric value is not within the range of its target column.
Effect: An exception is reported; the operation is not completed.
Recovery: Adjust the numeric value to a valid range for the SQL column type.