当前位置: 首页 > 网络学院 > 服务端脚本教程 > ADO > ADO CancelUpdate 方法
The CancelUpdate method cancels changes made to a record of a Recordset object, or the Fields collection of a Record object, before calling the Update method.
CancelUpdate的作用是:在请求Update方法前,取消对当前记录、记录集对象或字段所作的任何更改或放弃新添加的记录。
This method is used to cancel any changes made to the current record or to a newly added record. This method can only be called before the Update method of the Recordset is called.
这个方法的作用是:取消对当前记录所作的任何更改或放弃新添加的记录。这个方法只能在请求Update方法之前使用。
This method is used to cancel any changes (insertions or deletions) of Field objects.
这个方法是用来取消对Field[字段]对象所作出的更改的(包括插入操作或删除操作)。
objRecordset.CancelUpdate objRecord.Fields.CancelUpdate |