Could anyone point me to an article on how to solve the following
error?
Error Type:
Microsoft JET Database Engine (0x80040E4D)
Cannot start your application. The workgroup information file is
missing or opened exclusively by another user.
Here is the code:
Dim objRS, strConnect
strConnect = "Provider=Microsoft.Jet.OLEDB.4.0;" &_
"Data Source=" & Server.MapPath("/store/infostore/database.mdb") &
";User Id=Admin;Password=password;"
Const adOpenForwardOnly = 0
Const adLockReadOnly = 1
Const adCmdTable = 2
Set objRS = Server.CreateObject("ADODB.Recordset")
objRS.Open "Table", strConnect, adOpenForwardOnly, adLockReadOnly,
adCmdTable