This method outputs the rowid of the cursor's current row.
| 280 | |
| 281 | // This method outputs the rowid of the cursor's current row. |
| 282 | static int xRowid(sqlite3_vtab_cursor* cursor, sqlite_int64* output) { |
| 283 | *output = Cursor::Upcast(cursor)->rowid; |
| 284 | return SQLITE_OK; |
| 285 | } |
| 286 | |
| 287 | // This method tells SQLite how to *plan* queries on our virtual table. |
| 288 | // It gets invoked (typically multiple times) during db.prepare(). |
nothing calls this directly
no outgoing calls
no test coverage detected