Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ADO 8007007f error

Status
Not open for further replies.

arlequin

Programmer
Joined
Sep 21, 1999
Messages
232
Location
UY
Hello, there:

I've a simple ASP (not .NET) script which tries to open a connection to an Access database. Quite simple...

Running on Windows XP's IIS.
I get the 8007007f error on line 5, which follows:

Code:
 <%
    Dim BD
    dbPath = &quot;C:\Inetpub\SAG\javier\inmobiliaria.mdb&quot;
    Set BD = Server.CreateObject(&quot;ADODB.Connection&quot;)
    BD.Open &quot;PROVIDER=Microsoft.Jet.OLEDB.4.0;&quot; + &quot;DATA SOURCE&quot; & dbPath
%>

I've downloaded & installed the las MDAC version from MS website, but I can't get through.....
Does anyone have had this error?

IE dump follows:

Error type:
Server Object, ASP 0177 (0x8007007F)
8007007f
/javier/index.asp, line 5


N.B.: Server and browser are in Spanish version, I've translated the error to English....


Thanks in advance,

Arlequín
arlequin_AT_internet_DOT_com_DOT_uy
 
This error is typically due to out of date or mismatched dlls in your MDAC install.
Most likely you are hitting one of the errors referred to in the following: PRB: &quot;ODBC
Resource DLL Is a Different Version Than ...&quot; Error (Q170769)

You can download the component checker to verify your MDAC installation as well as
download MDAC from:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top