moves the cursor to the insert row. The current cursor position is
remembered while the cursor is positioned on the insert row.
The insert row is a special row associated with an updatable
result set. It is essentially a buffer where a new row may
be constructed by calling the
updateXXX
methods prior to
inserting the row into the result set.
Only the
updateXXX
,
getXXX
,
and
XResultSetUpdate::insertRow()
methods may be
called when the cursor is on the insert row. All of the columns in
a result set must be given a value each time this method is
called before calling
insertRow
. The method
updateXXX
must be called before a
getXXX
method can be called on a column value.