T
tonysum
Unregistered / Unconfirmed
GUEST, unregistred user!
最近用access2000开发一个小软件,需要将db1中的table1的数据全部数据导出db2
中的table1,在access环境中打开db1,我可以建立查询用如下语句
insert into c:/data/db2.table1 select * from table1
执行正确
但是在delphi中 我的语句如下:
with adocommand1 do
begin
commandtext:=' insert into c:/data/db2.table1 select * from table1 ';
execute;
end;
程序运行后,提示没有正确定义参数
请各位大侠帮忙看一下
中的table1,在access环境中打开db1,我可以建立查询用如下语句
insert into c:/data/db2.table1 select * from table1
执行正确
但是在delphi中 我的语句如下:
with adocommand1 do
begin
commandtext:=' insert into c:/data/db2.table1 select * from table1 ';
execute;
end;
程序运行后,提示没有正确定义参数
请各位大侠帮忙看一下