The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
Error Type:
ADODB.Connection (0x800A0E7A)
Provider cannot be found. It may not be properly installed.
/asptestsite/mytestsite/database.asp, line 39
this is the script im running :
<%
strDBVirtualPath = "/iishelp/iis/htm/tutorial/EECustmr.mdb"
strDBLocation = Server.Mappath(strDBVirtualPath)
strSource = "Provider=Microsoft.Jet.OLEDB.3.51;Data Source=" & strDBLocation
Set objConnection = Server.CreateObject("ADODB.Connection")
objConnection.Open strSource
SQLQuery = "SELECT * FROM Customers"
Set rsCustomersList = objConnection.Execute(SQLQuery)
%>
http://www.microsoft.com/data/download.htm , scroll down to Data Access Utilities and download/install Jet 4.0 Service Pack 3 Update. The error message you are getting is basically saying it cant find the driver or its corrupt.
Of course if you're running win2k or XP, should already have this version.
Error Type:
ADODB.Connection (0x800A0E7A)
Provider cannot be found. It may not be properly installed.
/asptestsite/mytestsite/database.asp, line 39
this is the script im running :
<%
strDBVirtualPath = "/iishelp/iis/htm/tutorial/EECustmr.mdb"
strDBLocation = Server.Mappath(strDBVirtualPath)
strSource = "Provider=Microsoft.Jet.OLEDB.3.51;Data Source=" & strDBLocation
Set objConnection = Server.CreateObject("ADODB.Connection")
objConnection.Open strSource
SQLQuery = "SELECT * FROM Customers"
Set rsCustomersList = objConnection.Execute(SQLQuery)
%>