![]() |
|
|
#1
|
|||
|
|||
|
Помогите оптимизировать
PHP код:
|
|
#2
|
||||
|
||||
|
Цитата:
Код:
function Tdatamodule_Connection.EOF: Integer;
begin
if (ConnectionStatus <> csConnected) or (SelectionStatus <> ssByKey) then
begin
LastMsgError := const_msg_ErrorSelection or const_msg_ErrorConnection;
Result := -1;
Exit;
end;
with cmp_Query_ do
try
if not Active then Open;
Result := Integer(EOF);
except
on E: Exception do
LastMsgError := E.Message;
Result := -1;
end;
end; |