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 270 by tony, Fri Jan 18 11:10:37 2019 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 >      ibxeMultiThreadRequired,
256 >      ibxeODSVersionRequired,
257 >      ibxeTokenQueueOverflow,
258 >      ibxeTokenQueueUnderflow,
259 >      ibxErrorParsing,
260 >      ibxeDLInfoError,
261 >      ibxeDifferentAPIs,
262 >      ibxeParameterNameNotFound
263        );
264  
265   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;
# Line 269 | Line 282 | resourcestring
282    SDefaultTransaction = '%s, Default';
283    SFirebirdAPIFuncNotFound = 'Unable to load Firebird Client Library Function "%s"';
284    SDatabaseFilter = 'Database Files (*.fdb; *.gdb)|*.gdb; *.fdb|All files (*.*)|*.*';
285 +  {$IFDEF WINDOWS}
286 +  SLibraryNameFilter = 'DLLs (*.dll)|*.dll|All files (*.*)|*.*';
287 +  {$ELSE}
288 +  SLibraryNameFilter = 'All files (*.*)|*.*';
289 +  {$ENDIF}
290    STrue = 'true';
291    SFalse = 'false';
292    SArray = '(array)';
# Line 448 | Line 466 | resourcestring
466    SUninitializedInputParameter = 'SQL Param No. %d (%s) is uninitialised';
467    SNegativeGenerator = 'A Generator Increment cannot be negative';
468    SServiceUnavailable = 'Request Service is not available';
469 +  SBadConnectString = 'Parse Error in Connect String';
470 +  SServiceNotStarted = 'Cannot Query running service until the service has been started';
471 +  SNotRequiredDataSetSource = 'Object of class %s is not a valid dataset source';
472 +  SNoLimboTransactionInsert = 'You cannot add to a Limbo Transaction list';
473 +  SDatabaseNotConnected = 'Cannot connect using an unattached database';
474 +  SMultiThreadRequired = 'Multi-threading required for %s but not enabled. Please recompile with multi-threading support enabled. '+
475 +                         'Hint: you probably need to add -dUseCThreads to the Custom Options.';
476 +  SODSVersionRequired = 'This feature requires ODS Version %s or later';
477 +  STokenQueueOverflow = 'Error in SQL Token Analyser - token queue overflow';
478 +  STokenQueueUnderflow = 'Error in SQL Token Analyser - token queue underflow';
479 +  SErrorParsing = 'Error parsing SQL Statement at clause starting with %s';
480 +  SDLInfoError = 'dlinfo returned error - %s';
481 +  SDifferentAPIs = 'All transaction attachments must use the same Firebird Library';
482 +  SParameterNameNotFound = 'Parameter Name (%s) not found';
483  
484   const
485    IBErrorMessages: array[TIBClientError] of string = (
# Line 616 | Line 648 | const
648      SUnknownUserCharSet,
649      SUninitializedInputParameter,
650      SNegativeGenerator,
651 <    SServiceUnavailable
651 >    SServiceUnavailable,
652 >    SBadConnectString,
653 >    SServiceNotStarted,
654 >    SNotRequiredDataSetSource,
655 >    SNoLimboTransactionInsert,
656 >    SDatabaseNotConnected,
657 >    SMultiThreadRequired,
658 >    SODSVersionRequired,
659 >    STokenQueueOverflow,
660 >    STokenQueueUnderflow,
661 >    SErrorParsing,
662 >    SDLInfoError,
663 >    SDifferentAPIs,
664 >    SParameterNameNotFound
665    );
666  
667   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines