Result: IDalCommand;
Result: IDalCommand;
The Result property returns a result of the task execution.
Command is a result of the task execution. Actual values can be received using properties and methods of the command. The following properties and methods of the received command are available for using :
Execute returns resulting number of the processed records without executing (it is used if ExecuteType = DalCommandExecuteType.Execute).
CreateCursor returns resulting cursor with data without executing (it is used if ExecuteType = DalCommandExecuteType.CreateCursor).
Params is used to receive the output parameters that contain the results of work of the stored procedure.
Connection is a connection within which the task was executed.
SQL is a text of the SQL query that was executed within the task.
DescribeCursor is a cursor that is available during the CreateCursor method execution.
The other properties or methods of the command that are the result of the task execution, are not supported.
The example of the property use is given in the description of the IDalCommand2.CreateTask method.
See also: