MCPcopy Index your code
hub / github.com/PyMySQL/PyMySQL / _query

Method _query

pymysql/cursors.py:428–433  ·  view source on GitHub ↗
(self, q)

Source from the content-addressed store, hash-verified

426 __del__ = close
427
428 def _query(self, q):
429 conn = self._get_db()
430 self._clear_result()
431 conn.query(q, unbuffered=True)
432 self._do_get_result()
433 return self.rowcount
434
435 def nextset(self):
436 return self._nextset(unbuffered=True)

Callers

nothing calls this directly

Calls 4

_get_dbMethod · 0.80
_clear_resultMethod · 0.80
queryMethod · 0.80
_do_get_resultMethod · 0.45

Tested by

no test coverage detected