You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE VIRTUAL TABLE myftstable2 USING fts5(something TEXT, nice TEXT);
selectFromTable2:
SELECT *
FROM myftstable2;
publicfunselectFromTable2(): Query<Myftstable2> = selectFromTable2 { something, nice ->Myftstable2( // the table is virtual and there is no Myftstable2 data class generated
something,
nice
)
}