SqliteVtabOpenCallback
The xOpen method creates a new cursor used for accessing (read and/or writing) a virtual table. A successful invocation of this method will allocate the memory for the sqlite3_vtab_cursor (or a subclass), initialize the new object, and make *ppCursor point to the new object.
Functions
Link copied to clipboard
abstract fun SqliteVtabOpenCallback.Scope<VtabCursor>.apply(vTab: Vtab): SqliteVtabOpenCallback.Result<VtabCursor>
Details on parameters and result can be found here