--- ibx/trunk/fbintf/client/FBMessages.pas 2018/02/24 23:15:51 144 +++ ibx/trunk/fbintf/client/FBMessages.pas 2018/03/14 12:48:51 209 @@ -246,7 +246,12 @@ type ibxeUnknownUserCharSet, ibxeUninitializedInputParameter, ibxeNegativeGenerator, - ibxeServiceUnavailable + ibxeServiceUnavailable, + ibxeBadConnectString, + ibxeServiceNotStarted, + ibxeNotRequiredDataSetSource, + ibxeNoLimboTransactionInsert, + ibxeDatabaseNotConnected ); function GetErrorMessage(ErrMess: TIBClientError): AnsiString; @@ -448,6 +453,11 @@ resourcestring SUninitializedInputParameter = 'SQL Param No. %d (%s) is uninitialised'; SNegativeGenerator = 'A Generator Increment cannot be negative'; SServiceUnavailable = 'Request Service is not available'; + SBadConnectString = 'Parse Error in Connect String'; + SServiceNotStarted = 'Cannot Query running service until the service has been started'; + SNotRequiredDataSetSource = 'Object of class %s is not a valid dataset source'; + SNoLimboTransactionInsert = 'You cannot add to a Limbo Transaction list'; + SDatabaseNotConnected = 'Cannot connect using an unattached database'; const IBErrorMessages: array[TIBClientError] of string = ( @@ -616,7 +626,12 @@ const SUnknownUserCharSet, SUninitializedInputParameter, SNegativeGenerator, - SServiceUnavailable + SServiceUnavailable, + SBadConnectString, + SServiceNotStarted, + SNotRequiredDataSetSource, + SNoLimboTransactionInsert, + SDatabaseNotConnected ); function GetErrorMessage(ErrMess: TIBClientError): AnsiString;