网络学院 w3pop社区 网络资源 IT新闻

w3pop.com :: 网络学院 :: ADO :: ADO EditMode 属性

会员登陆

帐号

密码

回答

记住密码

忘记密码? 注册

ADO EditMode 属性


作者:w3pop.com 翻译/整理:w3pop.com 发布:2007-04-28 浏览:1001 :: ::

The EditMode property returns an EditModeEnum value that specifies the editing status of the current record.
EditMode属性的作用是:返回一个EditModeEnum值,用于指定当前记录的编辑状态。

Syntax
语法

objRecordset.EditMode


EditModeEnum Values

Constant常量 Value值 Description描述
adEditNone 0 No editing operation is in progress
无正在进行的编辑操作(默认值)
adEditInProgress 1 The current record has been edited but not saved
当前记录中的数据已经改动,但尚未存入数据库的表中
adEditAdd 2 The current record in the copy buffer is a new record and has not been saved in the database
临时添加一条记录,但尚未存入数据库的表中
adEditDelete 4 The current record has been deleted
当前记录已被删除

评论 (0) All