CursorTypes Property

The CursorTypes property is a bit mask, that indicates supported cursor types.

Applies to objects: Connection, Database, TableDef.

Syntax

[[Let] RetVal = ] object.CursorTypes

The CursorTypes property syntax has these parts:

Part Description
object Required. A reference to an instance of the object.
RetVal Optional. A Long type variable.

Remarks

The CursorTypes property can contain a combination of the following values:
cdbCSForwardOnly - supports the cdbCursorForwardOnly cursor type.
cdbCSKeySet - supports the cdbCursorKeySet cursor type.
cdbCSDynamic - cursor type cdbCursorDynamic cursor type.
cdbCSStatic - cursor type cdbCursorStatic cursor type.

This property is Read-Only.

Example

.....

 

See Also

Connection Object, Database Object, TableDef Object, OpenRecordset Method.