我不知道你现在到那一步了,数据库连接成功了?如果没有,那你用的是什么数
据库?如果成功了,你用的是什么控件,是table,还是query?
如果是table,只要写:
table1.close;
table1.tablename:=a;//a是你的表名
table.open;
如果是query,只要写:
query1.close;
query1.sql.clear;
query1.sql.add('select * from tablename');//tablename是你的数据库表名'
query1.open;
当然你还要有一个显示控件,如DBGrid,用一个datasource把DBGrid和你的table
或query连接起来,即在datasource的Dataset属性中选择你的table或query,
在DBGrid的
datasource属性中选择你的datasource.