MCPcopy
hub / github.com/PyMySQL/PyMySQL / show_warnings

Method show_warnings

pymysql/connections.py:514–519  ·  view source on GitHub ↗

Send the "SHOW WARNINGS" SQL command.

(self)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 3

_execute_commandMethod · 0.95
readMethod · 0.95
MySQLResultClass · 0.85

Tested by

no test coverage detected