hondaman2003
Programmer
I am using Visual Studio 2008 with a project using .NET 2.0. I am using an Access database as the backend. I need to keep this backend database as small as possible because we are doing business over a WAN and the network performance is really poor. I would like to move old data from this backend database to an archive database that is completely identicle. I have tried the 'MERGE' method for the target dataset and that is successful, however the 'hadschanges' property remains 'false' so when I call the update method it doesn't think there is anything to update so the data is not saved back to the target database.
The next idea I have is to loop through the source dataset and add those records one at a time. How do I do that?
P.S.
There are a lot of things about this situation that is really poor but there is nothing I can do about those things at this time regarding not using an SQL server or any other database management system or the network issues and also using .NET 2.0.
The next idea I have is to loop through the source dataset and add those records one at a time. How do I do that?
P.S.
There are a lot of things about this situation that is really poor but there is nothing I can do about those things at this time regarding not using an SQL server or any other database management system or the network issues and also using .NET 2.0.