-
Fts of files inside the db is nice . I was wondering if there are any strategies for doing the same on files not inside the db but on disk , that leverages the same code ? link to project use case |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I think this would best be asked in SQLite forum. But I suspect this has something to do with external content and contentless tables. For external content tables, you may need to create a virtual table that maps a real Regardless, there doesn't seem to be anything missing from my driver, but if it is, please add to #54. |
Beta Was this translation helpful? Give feedback.
I think this would best be asked in SQLite forum.
But I suspect this has something to do with external content and contentless tables.
For external content tables, you may need to create a virtual table that maps a real
(rowid, path)
table to(rowid, path, text)
virtual table by reading text from the file. Contentless can probably avoid this mapping? I'm not sure.Regardless, there doesn't seem to be anything missing from my driver, but if it is, please add to #54.