fischadler
Programmer
I am using the code below to access an Access database:
What should I add to this code if the database is password protected?
Thanks
Code:
set Con = Server.CreateObject("ADODB.Connection")
DSNtemp="DRIVER={Microsoft Access Driver (*.mdb)}; "
DSNtemp=DSNtemp & "DBQ=" & server.mappath("mydb.mdb")
Con.Open DSNtemp
What should I add to this code if the database is password protected?
Thanks