MCPcopy
hub / github.com/django/django / executemany

Method executemany

django/db/backends/utils.py:124–126  ·  view source on GitHub ↗
(self, sql, param_list)

Source from the content-addressed store, hash-verified

122 return super().execute(sql, params)
123
124 def executemany(self, sql, param_list):
125 with self.debug_sql(sql, param_list, many=True):
126 return super().executemany(sql, param_list)
127
128 @contextmanager
129 def debug_sql(

Callers

nothing calls this directly

Calls 2

debug_sqlMethod · 0.95
executemanyMethod · 0.45

Tested by

no test coverage detected