I have a few questions?
What version of Access?
Are you using OLEDB or ODBC?
Can you post your connection string?
The connection string should look like this for Access 2007 with a password.
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\mydb.accdb;Jet OLEDB:Database Password=password; Standard security with ODBC should look like this for other versions of Access.
Driver={Microsoft Access Driver (*.mdb)};Dbq=C:\mydatabase.mdb;Uid=Admin;Pwd=password; Standard security with OLEDB should look like this.
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\mydb.mdb;User Id=admin;Password=password; And with just a database password, the OLEDB connection string should look like this:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\mydb.mdb;Jet OLEDB:Database Password=password;