Here's an 0x80004005 error (Microsoft Jet database engine cannot open the file... It is already opened exclusively by another user, or you need permission to view its data.) with a twist. The database file is a secured access 2000 mdb file and the following works until you compact the database file:
<%
dim cnnCurrent
dim strConnection
set cnnCurrent = Server.CreateObject("ADODB.Connection")
strConnection = "Provider=Microsoft.Jet.OLEDB.4.0; "
strConnection = strConnection & "Data Source=[MDB Absolute File Path]; "
strConnection = strConnection & "Jet OLEDB:System database=[MDW Absolute File Path]; "
cnnCurrent.Open strConnection, [UserID],[Password]
... further coding
cnnCurrent.close
%>
This is a classic ASP file (written in MS Visual Interdev 6) on an XP Pro machine.
Ideas anyone?
<%
dim cnnCurrent
dim strConnection
set cnnCurrent = Server.CreateObject("ADODB.Connection")
strConnection = "Provider=Microsoft.Jet.OLEDB.4.0; "
strConnection = strConnection & "Data Source=[MDB Absolute File Path]; "
strConnection = strConnection & "Jet OLEDB:System database=[MDW Absolute File Path]; "
cnnCurrent.Open strConnection, [UserID],[Password]
... further coding
cnnCurrent.close
%>
This is a classic ASP file (written in MS Visual Interdev 6) on an XP Pro machine.
Ideas anyone?