Andrey Maximenko. Ukraine
Member²
4.0.7:
function TOracleDataSet.PSGetKeyFields: string;
begin
...
if not Activating then Result := GetKeyFields;
...
end;
---------------------
3.4.6:
function TOracleDataSet.PSGetKeyFields: string;
begin
...
Result := GetKeyFields;
...
end;
---------------------
May I in 3.4.6 add 'if not Activating then ' to 'Result := GetKeyFields' ?
function TOracleDataSet.PSGetKeyFields: string;
begin
...
if not Activating then Result := GetKeyFields;
...
end;
---------------------
3.4.6:
function TOracleDataSet.PSGetKeyFields: string;
begin
...
Result := GetKeyFields;
...
end;
---------------------
May I in 3.4.6 add 'if not Activating then ' to 'Result := GetKeyFields' ?