Delete - method of the PmaDatabase object
Description:
Deletes the record on the current position in the database table.
Note:
The method deletes the row on the current position in the table, by calling the method the
current position is moved to the previous row. If this row does not exist, then after calling this method, the current row isn't set and before next calling the methods
Delete,
ReadFieldValue,
WriteFieldValue, etc. (requiring the current row to be set), it must be set, for example, by calling some of the methods
Move.. (e.g.
MoveFirst).
Example:
JavaScriptVBScriptSelect and copy to clipboard
oDb.Delete();
oDb.Delete