Record: ExecutionResult
Metadata of the query execution.
Fields
- affectedRowCount int
- lastInsertId string | int?
Number of rows affected by the execution of the query. It may be one of the following,
(1) A number greater than or equal to zero, the count of affected rows after the successful execution of the query
(2) A value of the SUCCESS_NO_INFO
, the count of affected rows is unknown after the successful execution of the query
(3) A value of the EXECUTION_FAILED
, the query execution failed
The ID generated by the database in response to a query execution. This can be ()
in case the database does not support this feature