I have developed a (vb.net) data prep application that lets a user load data onto a grid and then apply rules and transformations to selected columns. Each performed action will automatically be saved to a database (.mdf associated to the project, also used to populate some controls and hold some reference data). The next time the user have identical input data, all of the steps can be repeated at the click of a button.
So far, the application have been used on standalone computers. My employers IT-department is now to include it in their catalog of centrally distributed applications, and the one thing they have asked me to do first is to lose the database. I´m thinking I could use a locally stored xml file instead, but I have no experience with storing and retrieving data using xml. So, looking for some advice:
Is there a better way to go than xml? (I have been considering a local MS Access since all users have access to it, however I will not be able to create it or control the location programmatically). There are no joins or anything like that, just rows and columns and it´s not very big, a few MB at most.
As I understand it, to query an xlm-file I will have to read all of it into a data table and then query the table. Is this correct? Are there other ways to do it?
To change the xml file (the equivalent of inserting, deleting or updating rows in db), will I have to replace it with a new version of the file at every change? Or is there some sql-like solution?
Sorry if these questions are basic. Would be very happy just to be pushed in the right direction.