|
xterradane -> Database Security (1/14/2002 18:05:55)
|
I am having problems getting my database working with a password. It works fine without. I have tried various things, but here is the latest: error: Microsoft JET Database Engine error '80004005' Could not find installable ISAM. /webpub/JobBoard.asp, line 22 Code: Dim objConn Set objConn = Server.CreateObject ("ADODB.Connection") objConn.Open "Provider=Microsoft.Jet.OLEDB.4.0; " & _ "Data Source=D:\Inetpub\wwwroot\Database\JobBoard.mdb;" &_ "Jet OLEDB: Database Password=xxx" When I change it to: Dim objConn Set objConn = Server.CreateObject ("ADODB.Connection") objConn.Open "Provider=Microsoft.Jet.OLEDB.4.0; " & _ "Data Source=D:\Inetpub\wwwroot\Database\JobBoard.mdb; Password=xxx" I get this error: Microsoft JET Database Engine error '80040e4d' Cannot start your application. The workgroup information file is missing or opened exclusively by another user. /webpub/JobBoard.asp, line 22 Thanks, Gail Edited by - xterradane on 01/14/2002 19:46:17
|
|
|
|