MCPcopy
hub / github.com/django/django / execute

Method execute

django/db/backends/utils.py:120–122  ·  view source on GitHub ↗
(self, sql, params=None)

Source from the content-addressed store, hash-verified

118 # XXX callproc isn't instrumented at this time.
119
120 def execute(self, sql, params=None):
121 with self.debug_sql(sql, params, use_last_executed_query=True):
122 return super().execute(sql, params)
123
124 def executemany(self, sql, param_list):
125 with self.debug_sql(sql, param_list, many=True):

Callers

nothing calls this directly

Calls 2

debug_sqlMethod · 0.95
executeMethod · 0.45

Tested by

no test coverage detected