ASP ADO
ADO is used to access databases from web pages.
Accessing the database from an ASP page
The usual way to access the database from within an ASP page is:
Create an ADO connection to the database
Open database connection
Create ADO record set
Open record set
Extract the data you need from the data set
Close the data set
Close the connection
What is ADO?
ADO is a Microsoft technology
ADO stands for AactiveX Data Objects
ADO is a Microsoft Active-X component
ADO will be automatically installed with Microsoft IIS
ADO is a programming interface for accessing data in a database
If you want to learn more about ADO, please read our ADO tutorial.