P
Patrick Kristiansen
Hello!
I'm currently writing a web service that will synchronize data between
a client computer (Microsoft Access database) and a central server
(Microsoft SQL Server). I'm making a method on the webservice with the
following signature
void Synchronize(int clientID, DataSet data)
The method will go through every table in the dataset, and having
designed it in a way so the corresponding table on the SQL Server
roughly has the same schema as the one found in the Access database.
Now, using the SqlDataAdapter (and possibly the SqlCommandBuilder) how
would you suggest that I perform the synchronization? The client makes
sure the correct records are sent, so don't worry about that. I just
want to know if there is any built in methods that make it possible to
merge the records into the existing SQL Server database table.
Thanks in advance,
Patrick
I'm currently writing a web service that will synchronize data between
a client computer (Microsoft Access database) and a central server
(Microsoft SQL Server). I'm making a method on the webservice with the
following signature
void Synchronize(int clientID, DataSet data)
The method will go through every table in the dataset, and having
designed it in a way so the corresponding table on the SQL Server
roughly has the same schema as the one found in the Access database.
Now, using the SqlDataAdapter (and possibly the SqlCommandBuilder) how
would you suggest that I perform the synchronization? The client makes
sure the correct records are sent, so don't worry about that. I just
want to know if there is any built in methods that make it possible to
merge the records into the existing SQL Server database table.
Thanks in advance,
Patrick