Interop.ADODB errors

  • Thread starter Thread starter Bill Nguyen
  • Start date Start date
B

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
 
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
 
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
 
Back
Top