rowUpdated()
Syntax:
boolean rowUpdated() throws SQLException
Description:
Retrieves whether the current row has been updated. The value returned depends on whether or not the result set can detect updates.
Returns:
true if the current row is detected to have been visibly updated by the owner or another; false otherwise
RaimaDB does not support updating row sets, so this function will always return false.
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.rowUpdated()