MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / execute

Method execute

lib/sqlalchemy/testing/engines.py:446–450  ·  view source on GitHub ↗
(self, stmt, parameters=None, **kw)

Source from the content-addressed store, hash-verified

444 self.cursor = conn.cursor(*args, **kwargs)
445
446 def execute(self, stmt, parameters=None, **kw):
447 if parameters:
448 return self.cursor.execute(stmt, parameters, **kw)
449 else:
450 return self.cursor.execute(stmt, **kw)
451
452 def executemany(self, stmt, params, **kw):
453 return self.cursor.executemany(stmt, params, **kw)

Callers 15

drop_all_schema_objectsFunction · 0.45
drop_viewsFunction · 0.45
delete_from_all_tablesFunction · 0.45
connectMethod · 0.45
drop_all_tablesFunction · 0.45
insert_dataMethod · 0.45
_assert_resultMethod · 0.45
insert_dataMethod · 0.45
_assert_resultMethod · 0.45
test_tuplesMethod · 0.45
insert_dataMethod · 0.45
_assert_resultMethod · 0.45

Calls

no outgoing calls

Tested by 15

insert_dataMethod · 0.36
_assert_resultMethod · 0.36
insert_dataMethod · 0.36
_assert_resultMethod · 0.36
test_tuplesMethod · 0.36
insert_dataMethod · 0.36
_assert_resultMethod · 0.36
insert_dataMethod · 0.36