My problem is that I get following error :
Microsoft JET Database Engine (0x80004005)
Unspecified error
/dtk/common.asp, line 24
when running my ASP – Access Database on my localhost.
My script is following:
Dim dcnDB 'As ADODB.Connection
Set dcnDB = Server.CreateObject("ADODB.Connection")
dcnDB.ConnectionString = _
"Provider=Microsoft.Jet.OLEDB.4.0;" _
& "Persist Security Info = False;Data Source=" _
& Server.MapPath("Master.mdb")
dcnDB.Open
Set OpenDatabase = dcnDB
The error occours when calling dcnDB.Open
Everything has been working. It just stopped, the next day I turned my PC on. Then I checked the security settings on the folder containing the database and ASP pages. Temp folders (%tmp%, %temp). The IUSR_PCName and IWAM_PCName has full access to these folders. When searching the internet for this error – all answers is the permission to access the temp and other folders. But the permissions is OK according to the security tap.
The script is working fine on the webhotel.
I am running Windows XP – servicepack 3 and all other updates.
Why did it stop working????
Any ideas???