We need you!

We're working hard on the next version of Developer Fusion. Let us know what you think we should be up to!

Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

Rated
Read 43,686 times

Contents

Related Categories

ActiveX Data Objects - ActiveX Data Objects

Tahoni

ActiveX Data Objects

ADO is the object-based interface that provides a logical set of objects you can access from code. These objects are:

Object

Functionality

Connection

Manages the connection with the data source

Command

Defines the commands that will be executed against the data source

Recordset

Contains the data that is retrieved from the data source

These objects present an interface in the form of properties and methods that can be queried and manipulated. ADO was specifically developed to be small, lightweight, fast, and feature complete – everything you need when you are programming either for the database applications or the Internet.

An important thing in ADO is that the objects in this model are not dependant on one another. This means that you can create instances of objects independently of one another, for example, you can create a Recordset object without creating a connection object. Unlike the older technologies, ADO is more flexible, ADO code is easier to write, read and maintain. ADO is built on top of OLE DB and is capable of accessing any sort of data that is wrapped and exposed by an appropriate OLE DB provider.

Comments

  • control checkboxes or radio buttons

    Posted by bravo659 on 27 Feb 2003

    Your information was informative. Even though, i am just a beginner with these types of programming. I also liked the information about the ActiveX control. You are right, if the information that we u...

  • comment

    Posted by jett_i on 07 Feb 2003

    ok