Click or drag to resize

SQLSelect.ScrollUpdateType Property

X#
A constant, which describes the type of SQL statement to use during append, update or delete operations.

Namespace:  VO
Assembly:  VOSQLClasses (in VOSQLClasses.dll) Version: 2.19
Syntax
 VIRTUAL PROPERTY ScrollUpdateType AS USUAL GET SET 
Request Example View Source

Property Value

Type: Usual
A constant, which describes the type of SQL statement to use during append, update or delete operations.
Remarks
One of the following constants, which describes the type of SQL statement; searched (by key or value) or positioned (by cursor) to use during append, delete, or update operations:
ConstantDescription
SQL_SC_UPD_AUTO The system determines which type of SQL statement to use: attempting to use cursor, key, and value, respectively. The type that applies first is used. This is the default.
SQL_SC_UPD_CURSORThe cursor position is used.
SQL_SC_UPD_KEYThe key(s) specified in the primary key are used.
SQL_SC_UPD_VALUEThe value(s) of all the columns in the row are used.
See Also