E
erictim
Unregistered / Unconfirmed
GUEST, unregistred user!
现在使用的DATABASE是通过ODBC配置的VFP,现在使用一个QUERY来动态建立一个表
1、建立表:
Edit1.Text := 'demo.dbf';
str := 'create table '''+Edit1.TExt+'''(teleno char(7),total N(10,2))';
with query1 do
begin
close;
SQL.Clear;
SQL.Add(str);
ExecSQL; //出现错误:DBEngineError with Message"Name not unique in this context"
end;
请问这是为什么?
1、建立表:
Edit1.Text := 'demo.dbf';
str := 'create table '''+Edit1.TExt+'''(teleno char(7),total N(10,2))';
with query1 do
begin
close;
SQL.Clear;
SQL.Add(str);
ExecSQL; //出现错误:DBEngineError with Message"Name not unique in this context"
end;
请问这是为什么?