Closed
Description
Is there a way to do this in SQLite.swift? :
CREATE VIRTUAL TABLE table USING fts4(content='some_other_table', id, name)
I'd like to pre-populate my fts4 virtual table, but inserting one by one is very slow since my table contains over 30,000 rows. Is there any recommended way for this in SQLite.swift?