ResultSet.TYPE_SCROLL_INSENSITIVE
and ResultSet.CONCUR_UPDATABLE
when creating the Statement or PreparedStatement. Once the ResultSet is retrieved, the updateXXX
methods, such as updateString
, updateInt
, or updateDate
, are used to modify the values of specific columns in the current row. After making changes, the updateRow()
method is called to commit the updates to the database. New rows can be inserted using the moveToInsertRow()
, followed by setting column values with updateXXX
methods, and saving the new row using insertRow()
. This approach allows direct interaction with the database through the ResultSet, ensuring that updates are reflected immediately.