Home All Groups Group Topic Archive Search About
Author
20 Mar 2006 10:19 PM
Bill Nguyen
I suddendly got a ton of errors regarding Interop.ADODB could not be found.
Whenever I tried to run the app in development environment, the following
errors appeared:


The dependency 'Interop.ADODB' could not be found.

The referenced component 'ADODB1' could not be found. A wrapper assembly is
not registered for this type library.

this go on until ADODB96

The referenced component 'ADODB96' could not be found. A wrapper assembly is
not registered for this type library.



What am I missing and how can I fix it?
Thanks a million.

Bill

Author
21 Mar 2006 10:25 AM
Carlos J. Quintero [VB MVP]
Hi Bill,

ADODB is COM based and since you are using it on .NET, and Interop assembly
is needed, which is generated when you add a COM reference.

BTW, why aren´t you using the native ADO.NET (System.Data namespace)
instead?

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio
You can code, design and document much faster:
http://www.mztools.com


Show quoteHide quote
"Bill Nguyen" <billn_nospam_please@jaco.com> escribió en el mensaje
news:uqHEoxGTGHA.1236@TK2MSFTNGP11.phx.gbl...
>I suddendly got a ton of errors regarding Interop.ADODB could not be found.
>Whenever I tried to run the app in development environment, the following
>errors appeared:
>
>
> The dependency 'Interop.ADODB' could not be found.
>
> The referenced component 'ADODB1' could not be found. A wrapper assembly
> is not registered for this type library.
>
> this go on until ADODB96
>
> The referenced component 'ADODB96' could not be found. A wrapper assembly
> is not registered for this type library.
>
>
>
> What am I missing and how can I fix it?
> Thanks a million.
>
> Bill
>
Author
22 Mar 2006 1:22 AM
Bill Nguyen
Because I need to access Informix SE 7.2. Unless I can use ADO.NET with
Informix SE, I still have to cling to ADODB!

Thanks for your help.

Bill

Show quoteHide quote
"Carlos J. Quintero [VB MVP]" <carlosq@NOSPAMsogecable.com> wrote in message
news:OrRi$GNTGHA.4132@TK2MSFTNGP11.phx.gbl...
> Hi Bill,
>
> ADODB is COM based and since you are using it on .NET, and Interop
> assembly is needed, which is generated when you add a COM reference.
>
> BTW, why aren´t you using the native ADO.NET (System.Data namespace)
> instead?
>
> --
>
> Best regards,
>
> Carlos J. Quintero
>
> MZ-Tools: Productivity add-ins for Visual Studio
> You can code, design and document much faster:
> http://www.mztools.com
>
>
> "Bill Nguyen" <billn_nospam_please@jaco.com> escribió en el mensaje
> news:uqHEoxGTGHA.1236@TK2MSFTNGP11.phx.gbl...
>>I suddendly got a ton of errors regarding Interop.ADODB could not be
>>found. Whenever I tried to run the app in development environment, the
>>following errors appeared:
>>
>>
>> The dependency 'Interop.ADODB' could not be found.
>>
>> The referenced component 'ADODB1' could not be found. A wrapper assembly
>> is not registered for this type library.
>>
>> this go on until ADODB96
>>
>> The referenced component 'ADODB96' could not be found. A wrapper assembly
>> is not registered for this type library.
>>
>>
>>
>> What am I missing and how can I fix it?
>> Thanks a million.
>>
>> Bill
>>
>
>
Author
22 Mar 2006 11:38 AM
Carlos J. Quintero [VB MVP]
Hi Bill,

There should be .NET Data providers for Informix (not sure about the
supported versions)
http://www-306.ibm.com/software/data/informix/pubs/library/csdk_281.html

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio
You can code, design and document much faster:
http://www.mztools.com


Show quoteHide quote
"Bill Nguyen" <billn_nospam_please@jaco.com> escribió en el mensaje
news:eMhbZ8UTGHA.4900@TK2MSFTNGP12.phx.gbl...
> Because I need to access Informix SE 7.2. Unless I can use ADO.NET with
> Informix SE, I still have to cling to ADODB!
>
> Thanks for your help.
>
> Bill