I want to write into Access Database File using C# Application, probably using WPF … I also want the file to be password protected … is it possible to connect to it while it is password protected or should I remove the password?
I want to write into Access Database File using C# Application, probably using WPF
Share
Use OleDbConnection (System.Data.OleDb) and the right connection string.
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\mydatabase.mdb;User Id=admin;Password=;