I have an incomplete idea for an app and I will need to read a large text file (maybe into a table). Any suggestions as to what type of file structure I should attempt to use eg. SQLite, Json, CVS/TVS? Each row/record will be made up of a fixed number of fields and a set separator character eg. comma, tab etc.
Name, telephone, town, postcode, date … etc
I think that I need to read the data into a table and then search it using a ‘fuzzy’ search for a user entered word and any lines that the word appears in then it will be displayed. eg. user enters MON and it may find ‘MONday’, ‘MONkey’, ‘xMONx’ and so on.
The data will be ‘read only’. Any manipulation will be done outside of the app therefore the data will be static.
I would appreciate any suggestion or pointers to tutorials,
Thanks.