MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _fetchone_impl

Method _fetchone_impl

lib/sqlalchemy/engine/cursor.py:2373–2374  ·  view source on GitHub ↗
(self, hard_close: bool = False)

Source from the content-addressed store, hash-verified

2371 yield row
2372
2373 def _fetchone_impl(self, hard_close: bool = False) -> Any:
2374 return self.cursor_strategy.fetchone(self, self.cursor, hard_close)
2375
2376 def _fetchall_impl(self) -> Any:
2377 return self.cursor_strategy.fetchall(self, self.cursor)

Callers

nothing calls this directly

Calls 1

fetchoneMethod · 0.45

Tested by

no test coverage detected