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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top