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 221 by tony, Mon Mar 19 09:48:37 2018 UTC vs.
Revision 263 by tony, Thu Dec 6 15:55:01 2018 UTC

# Line 253 | Line 253 | type
253        ibxeNoLimboTransactionInsert,
254        ibxeDatabaseNotConnected,
255        ibxeMultiThreadRequired,
256 <      ibxeODSVersionRequired
256 >      ibxeODSVersionRequired,
257 >      ibxeTokenQueueOverflow,
258 >      ibxeTokenQueueUnderflow,
259 >      ibxErrorParsing,
260 >      ibxeDLInfoError,
261 >      ibxeDifferentAPIs
262        );
263  
264   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;
# Line 276 | 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 463 | Line 473 | resourcestring
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 638 | Line 653 | const
653      SNoLimboTransactionInsert,
654      SDatabaseNotConnected,
655      SMultiThreadRequired,
656 <    SODSVersionRequired
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