MCPcopy
hub / github.com/tortoise/tortoise-orm / execute_query_dict

Method execute_query_dict

tortoise/backends/mysql/client.py:224–225  ·  view source on GitHub ↗
(self, query: str, values: list | None = None)

Source from the content-addressed store, hash-verified

222 return cursor.rowcount, []
223
224 async def execute_query_dict(self, query: str, values: list | None = None) -> list[dict]:
225 return (await self.execute_query(query, values))[1]
226
227 @translate_exceptions
228 async def execute_script(self, query: str) -> None:

Callers

nothing calls this directly

Calls 1

execute_queryMethod · 0.95

Tested by

no test coverage detected