最新的Web開發教程
 

ADO支持方法


<完整記錄對象參考

Supports方法返回定義一個記錄對象是否支持特定類型的功能的布爾值。

Note:如果支持指定功能,此方法返回true,否則為false。

句法

objRecordset.Supports(cursoroptions)

參數 描述
cursoroptions 需要。 一個或多個CursorOptionEnum值指定此方法應該考什麼功能的

CursorOptionEnum

不變 描述
adHoldRecords0x100 獲取更多的記錄或更改下一個位置而不提交所有掛起更改
adMovePrevious0x200 支持的MoveFirst和MovePrevious方法,以及移動或GetRows的方法
adBookmark0x2000 支持書籤屬性
adApproxPosition0x4000 支持absolutePosition位置和AbsolutePage屬性
adUpdateBatch0x10000 支持的UpdateBatch和CancelBatch方法
adResync0x20000 支持Resync方法
adNotify0x40000 表示該數據提供者支持通知(其確定記錄事件是否支持)
adFind0x80000 支持Find方法
adIndex0x100000 支持索引屬性
adSeek0x200000 支持Seek方法
adAddNew0x1000400 支持AddNew方法
adDelete0x1000800 支持刪除方法
adUpdate0x1008000 支持Update方法

<完整記錄對象參考