getHoldability()
Syntax:
int getHoldability() throws SQLException
Description:
Retrieves the holdability of this ResultSet
object
Returns:
the holdability of this ResultSet
object - one of ResultSet.HOLD_CURSORS_AT_COMMIT
or ResultSet.CLOSE_CURSORS_AT_COMMIT
. Since RaimaDB currently only supports closing cursors at commit time, this method will always return ResultSet. CLOSE_CURSORS_AT_COMMIT
.
Throws:
SQLException - if a database access error occurs or this method is called on a closed result set
Reference:
For more information, reference JDBC documentation for: ResultSet.getHoldability()