We have the main VB6 trading application that uses MS Access (do not ask!). These are always explosive deals in the MS Access database.
The rest of the infrastructure has made significant progress here, and I want to periodically read this Access database and copy any new transactions into the SQL server database.
The SQL and C # required for this are trivially simple.
BUT I want to make sure that I do this so as not to block the Access database or create problems for the VB6 application. In other words, when populating my DataTable from Access, I DO NOT want to lock the database and prevent the VB6 application from writing to it. I think I remember from the old ADO that you can use sharing modes for this purpose.
Which connection string should I use from .NET to accomplish this?
source
share