James Bott wrote:I am not clear on this: if you do a oRS:delete() does it just delete the record in the recordset or does it automatically delete the record in the table on the server too? Or, is the record in the table only deleted when the recordset is updated (oRS:update())?
James
oRs:Delete() marks the current record in the recodset for deletion. Server does not yet know anything.
oRs:Update() ( update() is used to save changes to the server) actually deletes the record on the server.