ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/fbintf/client/FBMessages.pas
(Generate patch)

Comparing ibx/trunk/fbintf/client/FBMessages.pas (file contents):
Revision 144 by tony, Sat Feb 24 23:15:51 2018 UTC vs.
Revision 209 by tony, Wed Mar 14 12:48:51 2018 UTC

# Line 246 | Line 246 | type
246        ibxeUnknownUserCharSet,
247        ibxeUninitializedInputParameter,
248        ibxeNegativeGenerator,
249 <      ibxeServiceUnavailable
249 >      ibxeServiceUnavailable,
250 >      ibxeBadConnectString,
251 >      ibxeServiceNotStarted,
252 >      ibxeNotRequiredDataSetSource,
253 >      ibxeNoLimboTransactionInsert,
254 >      ibxeDatabaseNotConnected
255        );
256  
257   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;
# Line 448 | Line 453 | resourcestring
453    SUninitializedInputParameter = 'SQL Param No. %d (%s) is uninitialised';
454    SNegativeGenerator = 'A Generator Increment cannot be negative';
455    SServiceUnavailable = 'Request Service is not available';
456 +  SBadConnectString = 'Parse Error in Connect String';
457 +  SServiceNotStarted = 'Cannot Query running service until the service has been started';
458 +  SNotRequiredDataSetSource = 'Object of class %s is not a valid dataset source';
459 +  SNoLimboTransactionInsert = 'You cannot add to a Limbo Transaction list';
460 +  SDatabaseNotConnected = 'Cannot connect using an unattached database';
461  
462   const
463    IBErrorMessages: array[TIBClientError] of string = (
# Line 616 | Line 626 | const
626      SUnknownUserCharSet,
627      SUninitializedInputParameter,
628      SNegativeGenerator,
629 <    SServiceUnavailable
629 >    SServiceUnavailable,
630 >    SBadConnectString,
631 >    SServiceNotStarted,
632 >    SNotRequiredDataSetSource,
633 >    SNoLimboTransactionInsert,
634 >    SDatabaseNotConnected
635    );
636  
637   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines