G
Guest
Hi Guys
I'm writing an application which will operate in the following way
I have a database with ~12 tables which resides on an SQL server
Each end user will have an Access *.mdb file on his CE which will function as a "local copy" of the Server's database
The SQL server database will be updated periodically, while end users will be able click the "Database Sync" button in their local application to sync their copy of the database to the server's database and recieve any updates made to the server's database while considering the Server as the up-to-date copy (allways)
I'm looking for the most efficient way to do that
My first (and premitive) thought was to just load a datatable for each table from the SQL server and issue an oledbadapter.update on the local database with the datatable retrieved from the server. doing that for each table requires me to define and use many dataadapters/oledbCommands and seems "stupid" to me
Any thoughts of how can I do it more professionally and efficiently
Thanks !
Ori
I'm writing an application which will operate in the following way
I have a database with ~12 tables which resides on an SQL server
Each end user will have an Access *.mdb file on his CE which will function as a "local copy" of the Server's database
The SQL server database will be updated periodically, while end users will be able click the "Database Sync" button in their local application to sync their copy of the database to the server's database and recieve any updates made to the server's database while considering the Server as the up-to-date copy (allways)
I'm looking for the most efficient way to do that
My first (and premitive) thought was to just load a datatable for each table from the SQL server and issue an oledbadapter.update on the local database with the datatable retrieved from the server. doing that for each table requires me to define and use many dataadapters/oledbCommands and seems "stupid" to me
Any thoughts of how can I do it more professionally and efficiently
Thanks !
Ori