ADO::ExecuteOptionEnum
Specifies how a provider should execute a command.
| Constant |
Value |
Description |
adAsyncExecute |
16 |
Indicates that the command should execute asynchronously. |
adAsyncFetch |
32 |
Indicates that the remaining rows after the initial quantity specified
in the cacheSize property should be retrieved asynchronously. |
adAsyncFetchNonBlocking |
64 |
Indicates that the main thread never blocks while retrieving. If the
requested row has not been retrieved, the current row automatically
moves to the end of the file. |
adExecuteNoRecords |
128 |
Indicates that the command text is a command or stored procedure that
does not return rows (for example, a command that only inserts data).
If any rows are retrieved, they are discarded and not returned. |
adOptionUnspecified |
-1 |
Indicates that the command is unspecified. |
|