MCPcopy Create free account
hub / github.com/WiseLibs/better-sqlite3 / xEof

Method xEof

src/util/custom-table.cpp:259–261  ·  view source on GitHub ↗

If this method returns 1, SQLite will stop scanning the virtual table.

Source from the content-addressed store, hash-verified

257
258 // If this method returns 1, SQLite will stop scanning the virtual table.
259 static int xEof(sqlite3_vtab_cursor* cursor) {
260 return Cursor::Upcast(cursor)->done;
261 }
262
263 // This method extracts some column from the cursor's current row.
264 static int xColumn(sqlite3_vtab_cursor* _cursor, sqlite3_context* invocation, int column) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected