Promotic

Delete - method of the AdoRecordset object

Description:
Deletes record in the AdoRecordset object.
If not specified, then the current record position is selected.
Syntax:
Empty Delete([Long nAffectRecords])
Parameters:
nAffectRecords[optional] (Long) The value of the ADO AffectEnum type defines which records are to be deleted.
1 (default) - (adAffectCurrent) Current record.
2 - (adAffectGroup) Records that comply with the filtering criteria (the "Recordset.Filter" property).
Note:
After deleting a record, the deleted record remains current record until you move to a different record.
See also:
Example:
Setting the first record as the active record position, in the PmaAdo object ("/TestAdoDb"), that is already connected to the database (see the DbOpen method), by the SQL query ("SELECT * FROM table1"). It is followed by deleting the active record.
JavaScriptVBScriptSelect and copy to clipboard

var oDb = pMe.Pm("/TestAdoDb");
var oRs = oDb.RsOpen("table1", "SELECT * FROM table1", "cursor:dynamic;");
if (oRs)
{
oRs.MoveFirst();
oRs.Delete();
}

History:
Pm8.01.00: Created
PROMOTIC 9.0.27 SCADA system documentation MICROSYS, spol. s r.o.

Send page remarkContact responsible person
© MICROSYS, spol. s r.o.