MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / fetchone

Method fetchone

test/perf/compiled_extensions/result.py:364–368  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

362 pass
363
364 def fetchone(self):
365 if self._rows:
366 return self._rows.pop(0)
367 else:
368 return None
369
370 def fetchmany(self, size=None):
371 if size is None:

Callers 15

result_oneFunction · 0.45
go_oneMethod · 0.45
go_one_uqMethod · 0.45
test_tuples_plus_baseMethod · 0.45
test_scalar_plus_baseMethod · 0.45
test_merge_resultsMethod · 0.45

Calls 1

popMethod · 0.45