Hello, I have a application that will be run offline so there is no database connection. My options for the data-source are Excel Spreedsheet, CSV, or XML files.
The application needs to be able to search for a record and update it. What's the best way to do this?
Should I load the entire spreadsheet into memory and then work with it in memory (cache)? It sounds efficient, but risky.
Should I do a scan each time and then update each time, it sounds like an xml file would work best for this