B
bsense
Unregistered / Unconfirmed
GUEST, unregistred user!
查询的时候首次会出错,然后再查询就不出错
ZQuery1.close;
ZQuery1.SQL.Clear;
zQuery1.SQL.Add('select * from topics');
try
zQuery1.open;
except
showmessage('错误');
end;
跟踪到
destructor TZAbstractCachedResultSet.Destroy;
begin
FResolver := nil;
{BEGIN PATCH [1214009] CalcDefaults in TZUpdateSQL and Added Methods to GET the DB NativeResolver}
FNativeResolver := nil;
{END PATCH [1214009] CalcDefaults in TZUpdateSQL and Added Methods to GET the DB NativeResolver}
inherited Destroy; //错误
end;
ZQuery1.close;
ZQuery1.SQL.Clear;
zQuery1.SQL.Add('select * from topics');
try
zQuery1.open;
except
showmessage('错误');
end;
跟踪到
destructor TZAbstractCachedResultSet.Destroy;
begin
FResolver := nil;
{BEGIN PATCH [1214009] CalcDefaults in TZUpdateSQL and Added Methods to GET the DB NativeResolver}
FNativeResolver := nil;
{END PATCH [1214009] CalcDefaults in TZUpdateSQL and Added Methods to GET the DB NativeResolver}
inherited Destroy; //错误
end;