C
CPU风扇
Unregistered / Unconfirmed
GUEST, unregistred user!
with ADOTable1 do
begin
DisableControls;
first;
while not EOF do
begin
Delete;
end;
enablecontrols;
end;
数据库是用Access。
按照上面这样写,在程序的别的窗口都可以用,这是在这个不行。
delete删除表的记录有时也弹出这样的框,有时可以删,有时删不了,不知为何
请问这是什么原因?清空一个表,还有什么其他的写法?
begin
DisableControls;
first;
while not EOF do
begin
Delete;
end;
enablecontrols;
end;
数据库是用Access。
按照上面这样写,在程序的别的窗口都可以用,这是在这个不行。
delete删除表的记录有时也弹出这样的框,有时可以删,有时删不了,不知为何
请问这是什么原因?清空一个表,还有什么其他的写法?