SqliteVtabCreateCallback
typealias SqliteVtabCreateCallback<AppData, Vtab> = SqliteVtabCreateOrConnectCallback<AppData, Vtab>(source)
The xCreate method is called to create a new instance of a virtual table in response to a CREATE VIRTUAL TABLE statement. If the xCreate method is the same pointer as the xConnect method, then the virtual table is an eponymous virtual table. If the xCreate method is omitted (if it is a NULL pointer) then the virtual table is an eponymous-only virtual table.