MySQL Shell API 9.0.1
Unified development interface for MySQL Products
|
Base class for the different types of results returned by the server. More...
Methods | |
int | get_affected_items_count () |
The the number of affected items for the last operation. More... | |
int | get_warnings_count () |
The number of warnings produced by the last statement execution. More... | |
list | get_warnings () |
Retrieves the warnings generated by the executed operation. More... | |
str | get_execution_time () |
Retrieves a string value indicating the execution time of the executed operation. | |
Properties | |
int | affected_items_count |
Same as get_affected_items_count() | |
int | warnings_count |
Same as get_warnings_count() | |
list | warnings |
Same as get_warnings() | |
str | execution_time |
Same as get_execution_time() | |
Base class for the different types of results returned by the server.
int get_affected_items_count | ( | ) |
The the number of affected items for the last operation.
Returns the number of records affected by the executed operation.
int get_warnings_count | ( | ) |
The number of warnings produced by the last statement execution.
This is the same value than C API mysql_warning_count, see https://dev.mysql.com/doc/refman/en/mysql-warning-count.html
See get_warnings() for more details.
list get_warnings | ( | ) |
Retrieves the warnings generated by the executed operation.
This is the same value than C API mysql_warning_count, see https://dev.mysql.com/doc/refman/en/mysql-warning-count.html
Each warning object contains a key/value pair describing the information related to a specific warning.
This information includes: Level, Code and Message.