What is the difference between ADODB and ADODC?

Questions by arunima

Showing Answers 1 - 10 of 10 Answers

Sumitra kumar

  • Mar 24th, 2006
 

The main difference between ADODB and ADODC is :-

Adodc is just a data control, whereas Adodb is class library.

you can bound a recordset to a data source like adodc.it is just for making connection easily and to navigate through the data, whereas adodb is much more like transactiion handiling and more commmand over connection and recordset object.

the more can be learnt from the reference like

programming ADO by David sceppa

  Was this answer useful?  Yes

vinod

  • Jan 18th, 2007
 

i have created a database in MS Access.i want to know how ro connect the database to my visual basic project(how to connect the database with ADODC.

  Was this answer useful?  Yes

Jai pal reddy

  • Jun 9th, 2007
 

set con=createobject("ADODB.connection")
set rs=createobject("ADODB.recordset")
set cmd=createobject("ADODB.command")
con.provider=(Microsoft.jet.oledb.4.0")
con.open "select the path of the database"
rs.open "enter sql querry",con

  Was this answer useful?  Yes

What is modules

  • Feb 24th, 2017
 

In easy language for beginner

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions