Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q5803 What's ADO and what is it used for?

You are here: irt.org | FAQ | ASP | Q5803 [ previous next ]

ADO stands for ActiveX Data Objects. ADO is an application programming interface (API) and part of Microsoft's Data Access Components. It provides a number of objects that are used in the query and manipulation of databases through ASP.

ADO objects are used by first creating an instance of (instantiating) the object you want on the server. This is done with simple ASP code. Then, you simply use the methods, properties and collections of that object to accomplish what you want. See the 'How do I connect to and display records from a database??' Question for details on how to do this.

©2018 Martin Webb