JDBC/MX 5.0 Driver for SQL/MX Programmer's Reference (SQL/MX 2.x)

Effect: An SQL warning condition. Statements continue to be added to the internal cache.
Recovery: An SQL warning condition. Use the maxStatements property (or -Djdbcmx.maxStatements command-line
property) to increase the number of statements allowed.
[back to the top]
29077 HY000 HY000 Max rows value cannot be less than the fetch size
Cause: The row value passed to the JdbcRowSet.setMaxRows method is less than the current fetch-size setting
Effect: The maximum number of rows that the JdbcRowSet object can contain is not set.
Recovery: Increase the fetch-size value by using the JdbcRowSet.setFetchSize, or increase the maximum-rows value
passed to the JdbcRowSet.setMaxRows method.
[back to the top]
29078 HY000 Invalid JdbcRowSet state - {0} {1}
Cause: The Connection, ResultSet, or PreparedStatement value associated with the JdbcRowSet operation is null.
Effect: The method call fails.
Recovery: Make sure a call to the JdbcRowSet.execute() method is performed.
[back to the top]
29079 HY000 Match Columns are not the same as those set
Cause: The designated column passed to unsetMatchColumn() method was not previously set as a match column.
Effect: The designated column is not unset for this JdbcRowSet object.
Recovery: Use the setMatchColumn() method to set the designated column as a match column.
[back to the top]
29080 HY000 Set the match columns before getting them
Cause: A call to getMatchColumnNames(), getMatchColumnIndexex(), or unsetMatchColumn() method returns a null
or match column.
Effect: A match column value is not retrieved for this JdbcRowSet object.
Recovery: Use setMatchColumn() to set the designated column as a match column.
[back to the top]
29081 HY000 Match columns should be greater than 0
Cause: The program passed a column index value less than zero to the setMatchColumn() method.
Effect: The designated match column for this JdbcRowSet object is not set.
Recovery: Call the setMatchColumn() method with a valid column index value greater than zero.
[back to the top]
29082 HY000 Match columns cannot be null or empty string
Cause: A null or empty column name string is passed to the setMatchColumn() method.
Effect: The designated match column for this JdbcRowSet object is not set.