rowInserted()
Syntax:
boolean rowInserted() throws SQLException
Description:
Retrieves whether the current row has had an insertion. The value returned depends on whether or not this ResultSet
object can detect visible inserts.
Returns:
true if the current row is detected to have been inserted; 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.rowInserted()