A
abigfrog
Unregistered / Unconfirmed
GUEST, unregistred user!
strSQL:='select max(id) as maxId from tree';
query.Close;
query.SQL.Clear;
query.SQL.Text:=strSQL;
query.open;
maxId:=query.fieldbyname('maxId').asinteger;
query.First;
query.SQL.Free;
query.Close;
这段代码有错么?为什么总导致程序在退出时报错?注释掉上面代码就没有问题。请高手
指教,不胜感激!
query.Close;
query.SQL.Clear;
query.SQL.Text:=strSQL;
query.open;
maxId:=query.fieldbyname('maxId').asinteger;
query.First;
query.SQL.Free;
query.Close;
这段代码有错么?为什么总导致程序在退出时报错?注释掉上面代码就没有问题。请高手
指教,不胜感激!