在DELPHI中利用ADO组件访问数据库的步骤

类别:Delphi 点击:0 评论:0 推荐:
今天我在DELPHI中利用ADO组件成功连接了数据库,下面是一般步骤:
1.新建工程
2.在窗体中添加TADOConnection组件,并设置其ConnectionString属性,以便连接数据库。
3.添加TADOTable组件, 并设置其Connection属性为ADOConnection1.从TableName属性中选择数据表。
4.添加TDataSource组件,设置其DataSet属性为ADOTable1.
5.添加DataGrid组件,设置DataSource属性为DataSource
6.设置ADOTable1的Active属性为true.
7.运行程序测试

本文地址:http://com.8s8s.com/it/it4554.htm