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 209 by tony, Wed Mar 14 12:48:51 2018 UTC vs.
Revision 221 by tony, Mon Mar 19 09:48:37 2018 UTC

# Line 251 | Line 251 | type
251        ibxeServiceNotStarted,
252        ibxeNotRequiredDataSetSource,
253        ibxeNoLimboTransactionInsert,
254 <      ibxeDatabaseNotConnected
254 >      ibxeDatabaseNotConnected,
255 >      ibxeMultiThreadRequired,
256 >      ibxeODSVersionRequired
257        );
258  
259   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;
# Line 458 | Line 460 | resourcestring
460    SNotRequiredDataSetSource = 'Object of class %s is not a valid dataset source';
461    SNoLimboTransactionInsert = 'You cannot add to a Limbo Transaction list';
462    SDatabaseNotConnected = 'Cannot connect using an unattached database';
463 +  SMultiThreadRequired = 'Multi-threading required for %s but not enabled. Please recompile with multi-threading support enabled. '+
464 +                         'Hint: you probably need to add -dUseCThreads to the Custom Options.';
465 +  SODSVersionRequired = 'This feature requires ODS Version %s or later';
466  
467   const
468    IBErrorMessages: array[TIBClientError] of string = (
# Line 631 | Line 636 | const
636      SServiceNotStarted,
637      SNotRequiredDataSetSource,
638      SNoLimboTransactionInsert,
639 <    SDatabaseNotConnected
639 >    SDatabaseNotConnected,
640 >    SMultiThreadRequired,
641 >    SODSVersionRequired
642    );
643  
644   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines