after creating a table with this command in console:
CREATE VIRTUAL TABLE MyTable USING FTS3 (content TEXT);
I now have 4 tables:
MyTable, MyTable_content, MyTable_segdir, MyTable_segments
when I select the MyTable table an choose 'Import Wizard' to populate the table, in the step 6/8(filed mappings), Target filed is empty but it should have the 'content' filed in it(I can see the 'content' filed in the MyTable table when I double click on the table)
ver: 11.0.10(64bit)
CREATE VIRTUAL TABLE MyTable USING FTS3 (content TEXT);
I now have 4 tables:
MyTable, MyTable_content, MyTable_segdir, MyTable_segments
when I select the MyTable table an choose 'Import Wizard' to populate the table, in the step 6/8(filed mappings), Target filed is empty but it should have the 'content' filed in it(I can see the 'content' filed in the MyTable table when I double click on the table)
ver: 11.0.10(64bit)
Comment