327 |
|
function GetMessage: AnsiString; |
328 |
|
function CheckStatusVector(ErrorCodes: array of TFBStatusCode): Boolean; |
329 |
|
function GetIBDataBaseErrorMessages: TIBDataBaseErrorMessages; |
330 |
+ |
function Clone: IStatus; |
331 |
|
procedure SetIBDataBaseErrorMessages(Value: TIBDataBaseErrorMessages); |
332 |
|
end; |
333 |
|
|
1614 |
|
begin |
1615 |
|
inherited Create(aStatus.Getsqlcode,aStatus.GetMessage); |
1616 |
|
FIBErrorCode := aStatus.GetIBErrorCode; |
1617 |
< |
FStatus := aStatus; |
1617 |
> |
FStatus := aStatus.Clone; |
1618 |
|
end; |
1619 |
|
|
1620 |
|
constructor EIBInterBaseError.Create(ASQLCode: Long; AIBErrorCode: Long; |