ADO Supports 方法


❮ 完整的 Recordset 记录集对象参考

Supports 方法返回一个布尔值,该值定义 Recordset 对象是否支持特定类型的功能。

注释: 如果支持指定的功能,此方法返回 true,否则返回 false。

语法

objRecordset.Supports(cursoroptions)

参数 描述
cursoroptions 必需。 一个或多个 CursorOptionEnum 值,用于指定此方法应测试的功能

CursorOptionEnum

常量 描述
adHoldRecords 0x100 检索更多记录或更改下一个位置而不提交所有未决更改
adMovePrevious 0x200 支持 MoveFirst 和 MovePrevious 方法,以及 Move 或 GetRows 方法
adBookmark 0x2000 支持书签属性
adApproxPosition 0x4000 支持 AbsolutePosition 和 AbsolutePage 属性
adUpdateBatch 0x10000 支持 UpdateBatch 和 CancelBatch 方法
adResync 0x20000 支持重新同步方法
adNotify 0x40000 表示数据提供者支持通知(决定是否支持 Recordset 事件)
adFind 0x80000 支持 Find 方法
adIndex 0x100000 支持索引属性
adSeek 0x200000 支持 Seek 方法
adAddNew 0x1000400 支持 AddNew 方法
adDelete 0x1000800 支持删除方法
adUpdate 0x1008000 支持更新方法

❮ 完整的 Recordset 记录集对象参考