Moving data from a text file to SQLite database.
If I have a line in the text file like for example this: 123, "John,", Smith
Then what would be the fastest way to split this line in these 3 fields:
123
John,
Smith
As these files can be large, I need to process the file line by line, so I can't use for example StringUtils.
RBS
If I have a line in the text file like for example this: 123, "John,", Smith
Then what would be the fastest way to split this line in these 3 fields:
123
John,
Smith
As these files can be large, I need to process the file line by line, so I can't use for example StringUtils.
RBS