Get the number of affected (deleted, updated) rows for the current statement. Can be used for statements with get_field_count() == 0. @sa Documentation for C API function mysql_affected_rows(). */
| 228 | mysql_affected_rows(). |
| 229 | */ |
| 230 | ulonglong get_affected_rows() const |
| 231 | { |
| 232 | return m_diagnostics_area.affected_rows(); |
| 233 | } |
| 234 | |
| 235 | /** |
| 236 | Get the last insert id, if any. |
nothing calls this directly
no test coverage detected