getResultSetHoldability()

Syntax:

int getResultSetHoldability()
                            throws SQLException

Description:

Retrieves the result set holdability for ResultSet objects generated by this Statement object.

Returns:

either ResultSet.HOLD_CURSORS_OVER_COMMIT or ResultSet.CLOSE_CURSORS_AT_COMMIT

Raima Database Manager does not currently cursors being held open after a transaction commit, so this method always returns ResultSet.CLOSE_CURSORS_AT_COMMIT.

Throws:

SQLException - if a database access error occurs or the statement has been closed

Reference:

For more information, reference JDBC documentation for: Statement.getResultSetHoldability()