ADODB and ADOR interop

  • Thread starter Thread starter Raghu
  • Start date Start date
R

Raghu

The ADODB is exposed as .net component in .net framework. However I could
not find related .net component for ADOR. Is there a way to get or create
this for use with .net framework?

Thanks.
Raghu/..
 
¤ The ADODB is exposed as .net component in .net framework. However I could
¤ not find related .net component for ADOR. Is there a way to get or create
¤ this for use with .net framework?

You shouldn't need ADOR (Recordset object) as it is also supported through ADODB.


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 
That is not the case. If I have VB6 classes that define data members as
ADOR, it does not compile after porting to VB.NET.

I solved this problem by adding reference to COM component in VS.NET. This
created interop library without strong name. Since I needed the library to
be in the GAC, I used tlbimp utility with strong name key file.

 
¤ That is not the case. If I have VB6 classes that define data members as
¤ ADOR, it does not compile after porting to VB.NET.

Because you need to reference the Recordset object through ADODB as I implied. There is no need to
use ADOR via interop.


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 
Back
Top