Hi,
I have a large Excel CSV file, from which only a few records are read into SQLite table.. is it possible that I can edit those records and then save them back to the original CSV file, with each record in its original place before parsing it to the SQLite?
Example:
1- Original csv file contains: "aaa","bbb" ,"ccc","ddd" (single record)
2- I read the above record in a new SQLite table and change the "ccc" to "EEE" and saved to the original csv file.
3- Now the original csv file should read: "aaa","bbb" ,"EEE","ddd"
4- In real world the csv file has 1000 records and I want to change or edit records number 3, 6, 12, 44 and save them back.
Thanks in advance
I have a large Excel CSV file, from which only a few records are read into SQLite table.. is it possible that I can edit those records and then save them back to the original CSV file, with each record in its original place before parsing it to the SQLite?
Example:
1- Original csv file contains: "aaa","bbb" ,"ccc","ddd" (single record)
2- I read the above record in a new SQLite table and change the "ccc" to "EEE" and saved to the original csv file.
3- Now the original csv file should read: "aaa","bbb" ,"EEE","ddd"
4- In real world the csv file has 1000 records and I want to change or edit records number 3, 6, 12, 44 and save them back.
Thanks in advance