--- ibx/trunk/runtime/nongui/IBMessages.pas 2021/07/08 09:26:14 344 +++ ibx/trunk/runtime/nongui/IBMessages.pas 2021/08/23 14:22:29 345 @@ -175,7 +175,8 @@ type ibxeServerMismatch, ibxeUpgradeFailed, ibxDBVersionProblem , - ibxeResourceFileNotFound + ibxeResourceFileNotFound, + ibxePatchFileNotFound ); function GetErrorMessage(ErrMess: TIBClientError): AnsiString; @@ -317,6 +318,7 @@ resourcestring SUpgradeFailed = 'Upgrade Failed. Database Version No. is %d'; SDBVersionProblem = 'Database Version too low. Required %d, found %d'; SResourceFileNotFound = 'Unable to load resource file "%s"'; + SPatchFileNotFound = 'In section [%s] of the Upgrade File (%s), unable to open %s (SQL script to patch).'; const IBErrorMessages: array[TIBClientError] of string = ( @@ -419,7 +421,8 @@ const SServerMismatch, SUpgradeFailed, SDBVersionProblem, - SResourceFileNotFound + SResourceFileNotFound, + SPatchFileNotFound ); function GetErrorMessage(ErrMess: TIBClientError): AnsiString;