H
hmf9
Unregistered / Unconfirmed
GUEST, unregistred user!
我是想在一个数据库中创建创建两个表:
......
tb1:='create table 基本资料 (ID INT not null,编号 char(50) not null,面积 int ,单价 int) ';
tb2:='create table 明细 (ID INT not null,编号 char(50) not null,金额 int not null)';
with adoquery1 do
begin
ConnectionString:='Provider=Microsoft.Jet.OLEDB.4.0;Data Source='+fn+';Persist Security Info=False';
close;
sql.Clear;
SQL.Text:=tb1;
execsql;
close;
sql.text:=tb2;
execsql;//运行到这里报错
end;
另外如何建立索引?
......
tb1:='create table 基本资料 (ID INT not null,编号 char(50) not null,面积 int ,单价 int) ';
tb2:='create table 明细 (ID INT not null,编号 char(50) not null,金额 int not null)';
with adoquery1 do
begin
ConnectionString:='Provider=Microsoft.Jet.OLEDB.4.0;Data Source='+fn+';Persist Security Info=False';
close;
sql.Clear;
SQL.Text:=tb1;
execsql;
close;
sql.text:=tb2;
execsql;//运行到这里报错
end;
另外如何建立索引?