ADO can be used to access databases from your web pages.
ADO的作用是通过网页访问数据库。
Accessing a Database from an ASP Page
通过一个网页访问数据库
The common way to access a database from inside an ASP page is to:
访问ASP网页内的数据库的一般方法是:
- Create an ADO connection to a database
与数据库建立一个ADO连接 - Open the database connection
打开一个数据库连接 - Create an ADO recordset
建立一条ADO记录 - Open the recordset
打开这条记录 - Extract the data you need from the recordset
从记录中选取你所需要的日期 - Close the recordset
关闭记录 - Close the connection
关闭连接
What is ADO?
什么是ADO?
- ADO is a Microsoft technology
ADO是微软的技术 - ADO stands for ActiveX Data Objects
ADO 的全称是 ActiveX Data Objects - ADO is a Microsoft Active-X component
ADO 微软的 Active-X 中的一个组件 - ADO is automatically installed with Microsoft IIS
ADO 是自动装入 Microsoft IIS 中的 - ADO 是一个对数据库数据进行访问的设计页面
Where to go next?
接下来学什么?
If you want to study more ADO, read our ADO tutorial.
如果你想学习更多的关于ADO的知识,请阅读ADO教程。