Hello,
When we use ADO.NET connecting to the Ms Access, the problem is that we have to set the folder shared full.
Can we have another way to do this because when the database folder is shared full, it's very dangerous.
Tks,
LVD
When we use ADO.NET connecting to the Ms Access, the problem is that we have to set the folder shared full.
Code:
connection =
new OdbcConnection("Driver={Microsoft Access Driver (*.mdb)};"+
"DBQ=c:\\program files\\common files\\"+
"borland shared\\data\\dbdemos.mdb");
connection.Open();
Tks,
LVD