Result: IDalCommand;
The Result property returns task execution result.
A command is a result of the task execution. Actual values can be obtained using properties and methods of the command. The following properties and methods of the obtained command are available:
Execute returns output number of the processed records without executing (it is used if ExecuteType = DalCommandExecuteType.Execute).
CreateCursor returns output cursor with data without executing (it is used if ExecuteType = DalCommandExecuteType.CreateCursor).
Params is used to get output parameters containing the results of stored procedure work.
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 property use is given in description of the IDalCommand2.CreateTask method.
See also: