@"Data Source=C:\db2.mdb");
but add uid and pwd on one with a password and I get the error. Please help.
"William Ryan eMVP" <dotne...@comcast.nospam.net> wrote in message
news:eBMD0MjL...@tk2msftngp13.phx.gbl...
¤ @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\abc.mdb;Persist Security
¤ Info=True;Jet OLEDB:Database PWD=abc;User ID=Admin"
¤ also tried
¤ @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\abc.mdb;Persist Security
¤ Info=True;PWD=abc;User ID=Admin"
¤ and
¤ @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\abc.mdb;Persist Security
¤ Info=True;Jet OLEDB:Database PWD=abc;UID=Admin"
¤
Looks like the Jet OLEDB argument is incomplete (in two of your examples) and the Password (not PWD)
parameter is incorrect:
@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\abc.mdb;Jet OLEDB:Engine Type=5;Persist Security
Info=True;User ID=Admin;Password=abc"
You may also need to include the path to the System.mdw file if you are implementing user level
security.
Paul ~~~ pcle...@ameritech.net
Microsoft MVP (Visual Basic)
@"Data Source=C:\abc.mdb;Jet OLEDB:Engine Type=5;Persist Security
Info=True;" +
@"Password=abc");
"Paul Clement" <UseAdddressA...@swspectrum.com> wrote in message
news:ckl4909rerbfv4nte...@4ax.com...
@"Data Source=C:\db2.mdb;Jet OLEDB:Engine Type=5;" +
@"Jet OLEDB:Database Password=abc");
I guess it was that I was providing a user password, instead of a database
password. :)
"Brent" <b...@b.com> wrote in message
news:109cprm...@corp.supernews.com...