This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Sets or returns a long value that indicates the location of the cursor service.
It can be set to one of the CursorLocationEnum values.
Default value is %AdUseServer.
Syntax
GET
n = <ADODB_Connection>.CursorLocation
SET
<ADODB_Connection>.CursorLocation = CursorLocation
Returns
Number: one of the CursorLocationEnum values.
Parameters
Name |
Type |
Optional |
Meaning |
CursorType |
Number |
Yes |
one of the CursorLocationEnum values. Default value is %AdUseServer. |
Remarks
A cursor is used to:
•control record navigation
•control the visibility of changes in the database
•control the updatability of data
Note: an ADODB_Recordset object inherits this setting from the associated ADODB_Connection object.
Restrictions
Note: this property is read-only on an open ADODB_Recordset object, and read/write on a ADODB_Connection object or on a closed ADODB_Recordset object.
See also
Examples