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 263 by tony, Thu Dec 6 15:55:01 2018 UTC

# Line 251 | Line 251 | type
251        ibxeServiceNotStarted,
252        ibxeNotRequiredDataSetSource,
253        ibxeNoLimboTransactionInsert,
254 <      ibxeDatabaseNotConnected
254 >      ibxeDatabaseNotConnected,
255 >      ibxeMultiThreadRequired,
256 >      ibxeODSVersionRequired,
257 >      ibxeTokenQueueOverflow,
258 >      ibxeTokenQueueUnderflow,
259 >      ibxErrorParsing,
260 >      ibxeDLInfoError,
261 >      ibxeDifferentAPIs
262        );
263  
264   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;
# Line 274 | Line 281 | resourcestring
281    SDefaultTransaction = '%s, Default';
282    SFirebirdAPIFuncNotFound = 'Unable to load Firebird Client Library Function "%s"';
283    SDatabaseFilter = 'Database Files (*.fdb; *.gdb)|*.gdb; *.fdb|All files (*.*)|*.*';
284 +  {$IFDEF WINDOWS}
285 +  SLibraryNameFilter = 'DLLs (*.dll)|*.dll|All files (*.*)|*.*';
286 +  {$ELSE}
287 +  SLibraryNameFilter = 'All files (*.*)|*.*';
288 +  {$ENDIF}
289    STrue = 'true';
290    SFalse = 'false';
291    SArray = '(array)';
# Line 458 | Line 470 | resourcestring
470    SNotRequiredDataSetSource = 'Object of class %s is not a valid dataset source';
471    SNoLimboTransactionInsert = 'You cannot add to a Limbo Transaction list';
472    SDatabaseNotConnected = 'Cannot connect using an unattached database';
473 +  SMultiThreadRequired = 'Multi-threading required for %s but not enabled. Please recompile with multi-threading support enabled. '+
474 +                         'Hint: you probably need to add -dUseCThreads to the Custom Options.';
475 +  SODSVersionRequired = 'This feature requires ODS Version %s or later';
476 +  STokenQueueOverflow = 'Error in SQL Token Analyser - token queue overflow';
477 +  STokenQueueUnderflow = 'Error in SQL Token Analyser - token queue underflow';
478 +  SErrorParsing = 'Error parsing SQL Statement at clause starting with %s';
479 +  SDLInfoError = 'dlinfo returned error - %s';
480 +  SDifferentAPIs = 'All transaction attachments must use the same Firebird Library';
481  
482   const
483    IBErrorMessages: array[TIBClientError] of string = (
# Line 631 | Line 651 | const
651      SServiceNotStarted,
652      SNotRequiredDataSetSource,
653      SNoLimboTransactionInsert,
654 <    SDatabaseNotConnected
654 >    SDatabaseNotConnected,
655 >    SMultiThreadRequired,
656 >    SODSVersionRequired,
657 >    STokenQueueOverflow,
658 >    STokenQueueUnderflow,
659 >    SErrorParsing,
660 >    SDLInfoError,
661 >    SDifferentAPIs
662    );
663  
664   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines