Equivalent ADODB.Connector and ADODB.Recordset in VB.NET

  • Thread starter Thread starter Marty
  • Start date Start date
M

Marty

Hi,

What is the VB.NET equivalent of the VB6 ADODB.Connector and
ADODB.Recordset?

Thanks

Marty
 
Marty,

You can use in VB.Net ADODB. However exactly as I write "use" it is not
really dotNet.

In dotNet are the equivalent of the ADODBconnection the ADONET connections,
normally SQLConnection and OleDbConnection while there is at least one more
for Oracle.

A kind of equivalent from the recordset is the datatable, which is mostly
used in a dataset which can hold more datatables.

The big difference between ADODB and ADONET is that ADODB is connected and
ADONET disconnected.

I hope this helps?

Cor.
 
Hi Marty,

In .NET, they are the OleDBConnection or SqlConnection object, and the
DataSet objects.

HTH,
- Rakesh Rajan
 

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