I want to access some data in an Access MDB but I want to make sure that nothing can be accidentally altered.
I have tried:
conn = New OleDbConnection(Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Test.MDB;Mode=adModeRead;")
I've also used
conn = New OleDbConnection(Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Test.MDB;Mode=Read;")
I then run a quick UPDATE WHERE query and it still alters the data.
Any ideas thanks.
Pedro