MCPcopy Index your code
hub / github.com/httprunner/httprunner / fetchmany

Method fetchmany

httprunner/database/engine.py:65–66  ·  view source on GitHub ↗
(self, query, size, commit=True)

Source from the content-addressed store, hash-verified

63 return self._fetch(query, size=1, commit=commit)
64
65 def fetchmany(self, query, size, commit=True):
66 return self._fetch(query=query, size=size, commit=commit)
67
68 def fetchall(self, query, commit=True):
69 return self._fetch(query=query, size=-1, commit=commit)

Callers 3

_fetchMethod · 0.45
engine.pyFile · 0.45
TestCaseDemoSqliteClass · 0.45

Calls 1

_fetchMethod · 0.95

Tested by

no test coverage detected