Blocking.ResSourceThe module containing operations on MariaDB query results.
The type of query results.
num_rows res returns the number of rows in result res after the execution of a SELECT-type query.
affected_rows res returns the number of affected rows in result res after the execution of an INSERT or UPDATE-type query.
insert_id res returns the ID generated by a prepared statement on a table with a column having the AUTO_INCREMENT attribute. If the last query wasn't an INSERT or UPDATE statement or if the modified table does not have a column with the AUTO_INCREMENT attribute, this function will return zero.