Simple ADO.NET Application

  • Thread starter Thread starter Julián Sanz
  • Start date Start date
J

Julián Sanz

Hi,

I've developed a simple application. In this application I try to open an
oledbconnection but when it execute:
oOledbConnection.Open().

it throws a oledbexception with this message:
La información del error no está disponible: E_NOINTERFACE(0x80004002).

I have installed MDAC 2.8 and JET 4.0 for windows XP update

what's happening happening?
 
Julian,

That errormessage on your computer shows nothing, mabye will a piece of code
do.

Cor
 
Julián Sanz said:
Hi,

I've developed a simple application. In this application I try to open an
oledbconnection but when it execute:
oOledbConnection.Open().

it throws a oledbexception with this message:
La información del error no está disponible: E_NOINTERFACE(0x80004002).

I have installed MDAC 2.8 and JET 4.0 for windows XP update

what's happening happening?

Show us your code for establishing the connection, including the Connection String.

- carl
 
Make sure your exceptions are being trapped by a Try Catch block.

Try

your code

Catch ex as Exception
msgbox ex.tostring
end try




--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
Microsoft MVP
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________
 
Back
Top