Q
Q. John Chen
I have two access database (with identical schema). One is the master
and the other is SHOULD be a subset of master data (Let call them
MasterDB and SubDB
The user enters data into the SubDB and I need to bring the new
changes to the MasterDB. Traditionally, I can get a the new changes
(into a dataTable). Loop through all the rows and insert them into the
MasterDB ONE AT A TIME.
My question: IS THERE A BETTER WAY?
For SQL Server, there is a SqlBulkCopy but I am dealing with MS
Access.
In my case, performance is not an issue, I just want write less
code.
Thanks
John
and the other is SHOULD be a subset of master data (Let call them
MasterDB and SubDB
The user enters data into the SubDB and I need to bring the new
changes to the MasterDB. Traditionally, I can get a the new changes
(into a dataTable). Loop through all the rows and insert them into the
MasterDB ONE AT A TIME.
My question: IS THERE A BETTER WAY?
For SQL Server, there is a SqlBulkCopy but I am dealing with MS
Access.
In my case, performance is not an issue, I just want write less
code.
Thanks
John