If this method returns 1, SQLite will stop scanning the virtual table.
| 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) { |
nothing calls this directly
no outgoing calls
no test coverage detected