C# and ADO.NET data caching
-
Hi, Let's face it, I don't understand how I can do the following. Let's explain a little : * I have an online database (in fact mysql). I access this base through ByteFX's MySQLDataAdapter. * I have an application which can read data from it but also can modify them WITHOUT necessary doing a fill (updating the database back). In fact, this application could be closed without having done the updates, inserts, etc. * I do not have issues like online datas beeing changed or multi-people acceding the datas. Only this application is responsible of the database. What I want is when the application is launched again, the "not updated yet" part of the datas are still there. So I need to cache them in some file. What is the best approach to do that ? Thanks