F
fire.bruin
Unregistered / Unconfirmed
GUEST, unregistred user!
//公共函数
Function sqlexe(const bz,s:String;var pubq:TADOQuery):boolean;
Begin
with pubq do
Begin
if Active then Close;
SQL.Clear;
SQL.Add(s);
try
if bz='0' then Open
else ExecSQL;
result:=true;
except
result:=false;
end;
end;
end;
服务端执行下面的语句时,Result 的值经常为 RTN_ERROR,这是我不希望看到的结果!问题出在哪?
sql:='Select * From student';
If Not SqlExe('0',sql,FQuery) Then
begin
Result := RTN_ERROR;
data_str :='查找在线表错!';
end;
Function sqlexe(const bz,s:String;var pubq:TADOQuery):boolean;
Begin
with pubq do
Begin
if Active then Close;
SQL.Clear;
SQL.Add(s);
try
if bz='0' then Open
else ExecSQL;
result:=true;
except
result:=false;
end;
end;
end;
服务端执行下面的语句时,Result 的值经常为 RTN_ERROR,这是我不希望看到的结果!问题出在哪?
sql:='Select * From student';
If Not SqlExe('0',sql,FQuery) Then
begin
Result := RTN_ERROR;
data_str :='查找在线表错!';
end;