ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/udr/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 217 by tony, Fri Mar 16 10:27:26 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 >      ibxMultiThreadRequired
256        );
257  
258   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;
# Line 448 | Line 454 | resourcestring
454    SUninitializedInputParameter = 'SQL Param No. %d (%s) is uninitialised';
455    SNegativeGenerator = 'A Generator Increment cannot be negative';
456    SServiceUnavailable = 'Request Service is not available';
457 +  SBadConnectString = 'Parse Error in Connect String';
458 +  SServiceNotStarted = 'Cannot Query running service until the service has been started';
459 +  SNotRequiredDataSetSource = 'Object of class %s is not a valid dataset source';
460 +  SNoLimboTransactionInsert = 'You cannot add to a Limbo Transaction list';
461 +  SDatabaseNotConnected = 'Cannot connect using an unattached database';
462 +  SMultiThreadRequired = 'Multi-threading required for %s but not enabled. Please recompile with multi-threading support enabled. '+
463 +                         'Hint: you probably need to add -dUseCThreads to the Custom Options.';
464  
465   const
466    IBErrorMessages: array[TIBClientError] of string = (
# Line 616 | Line 629 | const
629      SUnknownUserCharSet,
630      SUninitializedInputParameter,
631      SNegativeGenerator,
632 <    SServiceUnavailable
632 >    SServiceUnavailable,
633 >    SBadConnectString,
634 >    SServiceNotStarted,
635 >    SNotRequiredDataSetSource,
636 >    SNoLimboTransactionInsert,
637 >    SDatabaseNotConnected,
638 >    SMultiThreadRequired
639    );
640  
641   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines