Data.Win.ADODB.TCursorLocation

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCursorLocation = (clUseServer, clUseClient);

C++

enum DECLSPEC_DENUM TCursorLocation : unsigned char { clUseServer, clUseClient };

Properties

Type Visibility Source Unit Parent
enum public
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Data.Win.ADODB Data.Win.ADODB

Description

TCursorLocation values specify whether to use client-side or server-side cursor library.

Use TCursorLocation values when determining a cursor location to specify whether to use a client-side or server-side cursor library. The value clUseServer indicates a server-side cursor library is used and clUseClient that a client-side cursor is used.

The TCursorLocation constants correspond to the Long value in the CursorLocation property of ADO Connection and Recordset objects. The ADO constants are adUseNone, adUseClient, and adUseServer. The TCursorLocation values clUseServer and clUseClient have the same effect as the ADO values adUseClient and adUseServer. See the Microsoft Data Access SDK help for information on these values and their effects.

See Also