
Need to reinstall Microsoft ODBC Driver for Oracle ?
Indeed you need to reinstall the ODBC stack since there is a version
mismatch among ODBC components.
--
Best regards,
Carlos J. Quintero
Freeware "all-in-one" Add-In for VB6: TabIndex Assistant, Procedure Callers,
Find in All Projects, Close Windows, Review TabIndex, Review Collections,
Add Property or Function, Add Error Handler, Add Header Comment, Clear
Immediate Window, Project Statistics:
www.mztools.com
Quote:
> Hi everybody,
> I'm trying to put a DSN less connection to an Oracle database instance
> (declared in Net 8.) in my vb6 Code, but I first have a configuration
> problem, with ODBC components :
> When opening the "ODBC Administrator", to test my ODBC Connection with
> an Oracle Database, this application fails (on launching) : I get an
> error message :
> "ODBC resource Dll (C:\winnt\system32\odbcint.dll) is a different
> version than the administrator (C:\winnt\odbcad32.exe). You need to
> reinstall the ODBC Components to ensure proper operation"
> Any help would be very very appreciated, thanks in advance,
> Olivier
> ps: this problem may have occured following MSDN Update... Anybody got
> same kind of troubles ?
> *********************************************************
> By the way, my VB6 code (for DSN less connection) is :
> l_sConnectionString = "UID=" & m_sDBUserName & _
> ";PWD=" & m_sDBPassword & _
> ";DRIVER={Microsoft ODBC for Oracle};" & _
> "SERVER=MPDATA;"
> m_dyn_ADODBConnection.Open l_sConnectionString
> Is this OK ?