I’m looking to copy a few thousand records from SQL Server into Access in C#. The other direction works using SqlBulkCopy. Is there anything in place to do this in reverse?
I’m trying my best to stay away from looping through each field in each record and building a heinous Insert statement that not only would take forever to run, but would likely crash horribly if anything changes.
This will run against the MS Access OleConnection connection:
For example:
Or to append
Or with FileDSN
You will need to find the right driver to suit, for example
From http://connectionstrings.com works for me, but check out your client version.