JDBC Type 2 Driver Programmer's Reference for SQL/MX Release 3.2.1 (H06.26+, J06.15+)

9 Messages
JDBC/MX returns sqlcode and file-system error codes as error codes for the getErrorCode()
`method of SQLException.
Messages from the Native-interface Portion of the JDBC Driver
(range 29250 through 29499)
Messages from the Java Portion of the JDBC Driver (range
29000 through 29079)
29251-29259
nl
29001-29009 29050-29059
nl
29260-2926729010-29019 29060-29069
nl
29020-29029 29070-29079
nl
29030-29039 29080-29089
nl
29040-29049
Messages are listed in numerical SQLCODE order. Descriptions include the following:
SQLCODE SQLSTATE message-text
Cause [ What occurred to trigger the message.]
Effect [ What is the result when this occurs. ]
Recovery [ How to diagnose and fix the problem. ]
For information about error codes outside these ranges, see the HP NonStop SQL/MX Release
3.2.1 Messages Manual.
Messages From the Java Side of the JDBC/MX Driver
29001 HYC00 Unsupported feature - {0}
Cause: The feature listed is not supported by the JDBC driver.
Effect: An unsupported exception is throw, and null resultSet is returned.
Recovery: Remove the feature functionality from the program.
nl
29002 08003 Connection does not exist
Cause: An action was attempted when the connection to the database was closed.
Effect: The database is inaccessible.
Recovery: Retry the action after the connection to the database is established.
nl
29003 HY000 Statement does not exist
Cause: A validation attempt was made on the getter or exec invocation on a closed statement.
Effect: The getter or exec invocation validation fails.
Recovery: Issue validateGetInvocation() or validateExecDirectInvocation when
the statement is open.
nl
29004 HY024 Invalid transaction isolation value
Cause: An attempt was made to set the transaction isolation level to an invalid value.
Effect: SQLMXConnection.setTransactionIsolation does not set the transaction isolation
value.
Recovery: Valid isolation values are: SQL_TXN_READ_COMMITTED,
SQL_TXN_READ_UNCOMMITTED,SQL_TXN_REPEATABLE_READ, and
SQL_TXN_SERIALIZABLE. If no isolation value is specified, the default is
SQL_TXN_READ_COMMITTED.
nl
80 Messages