deleteRow( )

Immediately marks the current record in the AGDBSet object for deletion and sets the data values to zero. The record is physically removed from the AGDBSet object during the next synchronization.

Interface

AGDBSet

IDL definition
void deleteRow( );
ADO equivalent

Delete method

JavaScript synopsis
dbset.deleteRow( )
C synopsis
void AVdeleteRow(AGDBSet* dbset);
Parameters
  • dbset   The AGDBSet object.

Returns

None

Remarks

After using deleteRow( ), the record continues to exist in the AGDBSet object and the index does not move in response to this method. Note that deleteRow( ) cannot be undone.

See also

removeRow( )