Class: ProcedureCallResult
Represents the results from the call
method holding the returned results or metadata of the query execution.
Methods
getNextQueryResult | Updates |
close | Releases the associated resources such as the database connection, results, etc. |
Fields
- executionResult ExecutionResult?(default ())
- queryResult stream<record {}, Error?>?(default ())
- customResultIterator CustomResultIterator?
Summary of the query execution
Results from the SQL query
Any custom result iterator to be used to override the default behaviour
getNextQueryResult
Isolated Function
Updates executionResult
or queryResult
field with the succeeding result in the result list. This will also close the current
result when called.