Send the "SHOW WARNINGS" SQL command.
(self)
| 512 | self._read_ok_packet() |
| 513 | |
| 514 | def show_warnings(self): |
| 515 | """Send the "SHOW WARNINGS" SQL command.""" |
| 516 | self._execute_command(COMMAND.COM_QUERY, "SHOW WARNINGS") |
| 517 | result = MySQLResult(self) |
| 518 | result.read() |
| 519 | return result.rows |
| 520 | |
| 521 | def select_db(self, db): |
| 522 | """ |
nothing calls this directly
no test coverage detected