Data.Win.ADODB.TExecuteOptions

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TExecuteOptions = set of TExecuteOption;

C++

typedef System::Set<TExecuteOption, TExecuteOption::eoAsyncExecute, TExecuteOption::eoExecuteNoRecords> TExecuteOptions;

Properties

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

Description

TExecuteOptions values specify the characteristics of an execution operation.

When executing a command or connection using a method, use TExecuteOptions values to specify the characteristics of the execution operation. When reacting to a command or connection execution in an event handler, read the execute options parameter to determine the options already established for the connection triggering the event.

TExecuteOptions consists of the constants summarized in the following table:



Execute Option Meaning

eoAsyncExecute

The command is executed asynchronously.

eoAsyncFetch

The command fetches remaining rows after the initial quantity specified in the Cache property asynchronously.

eoAsyncFetchNonBlocking

Execution is performed without blocking the thread.

eoExecuteNoRecords

A command or stored procedure that does not return. If any rows are retrieved, they are discarded and not returned.



See Also