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 56 by tony, Mon Mar 6 10:20:02 2017 UTC vs.
Revision 270 by tony, Fri Jan 18 11:10:37 2019 UTC

# Line 241 | Line 241 | type
241        ibxeInvalidVariantType,
242        ibxeServiceRunning,
243        ibxeUniqueRelationReqd,
244 <      ibxeInterfaceNotSupported
244 >      ibxeInterfaceNotSupported,
245 >      ibxeCharacterSetExists,
246 >      ibxeUnknownUserCharSet,
247 >      ibxeUninitializedInputParameter,
248 >      ibxeNegativeGenerator,
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 264 | 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 377 | Line 400 | resourcestring
400    SServerNameMissing = 'Server Name Missing';
401    SQueryParamsError = 'Query Parameters missing or incorrect';
402    SStartParamsError = 'start Parameters missing or incorrect';
403 <  SOutputParsingError = 'Unexpected Output buffer value (%d)';
403 >  SOutputParsingError = 'Unexpected Output buffer value (%d) - %s';
404    SUseSpecificProcedures = 'Generic ServiceStart not applicable: Use Specific Procedures to set configuration params';
405    SSQLMonitorAlreadyPresent = 'SQL Monitor Instance is already present';
406    SDelphiException = 'DelphiException %s';
# Line 438 | Line 461 | resourcestring
461    SServiceRunning = 'Cannot start a new service while an existing service is running';
462    SUniqueRelationReqd = 'All Output Fields must derived from the same table';
463    SInterfaceNotSupported = 'Interface not supported; Guid %s not found';
464 +  SCharacterSetExists = 'Character set "%s" is already defined';
465 +  SUnknownUserCharSet = 'Unknown user character set "%s"';
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 601 | Line 643 | const
643      SInvalidVariantType,
644      SServiceRunning,
645      SUniqueRelationReqd,
646 <    SInterfaceNotSupported
646 >    SInterfaceNotSupported,
647 >    SCharacterSetExists,
648 >    SUnknownUserCharSet,
649 >    SUninitializedInputParameter,
650 >    SNegativeGenerator,
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