O
oicu
Unregistered / Unconfirmed
GUEST, unregistred user!
。。。
cre:='create table MyTempTable(单位名称1 char(40),姓名1 char(8),身份证1 char(18),卡号1 char(10),姓名2 char(8),身份证2 char(18),卡号2 char(10))';
with ADOQUery1 do
begin
Connection:=ADOConnection1;
close;
SQL.Clear;
SQL.Add(cre);
Prepared;
ExecSQL;
end;
with MyTempTable do
begin
insert;
post;
end;
。。。
cre:='create table MyTempTable(单位名称1 char(40),姓名1 char(8),身份证1 char(18),卡号1 char(10),姓名2 char(8),身份证2 char(18),卡号2 char(10))';
with ADOQUery1 do
begin
Connection:=ADOConnection1;
close;
SQL.Clear;
SQL.Add(cre);
Prepared;
ExecSQL;
end;
with MyTempTable do
begin
insert;
post;
end;
。。。