244 |
|
ibxeInterfaceNotSupported, |
245 |
|
ibxeCharacterSetExists, |
246 |
|
ibxeUnknownUserCharSet, |
247 |
< |
ibxeUninitializedInputParameter |
247 |
> |
ibxeUninitializedInputParameter, |
248 |
> |
ibxeNegativeGenerator, |
249 |
> |
ibxeServiceUnavailable, |
250 |
> |
ibxeBadConnectString, |
251 |
> |
ibxeServiceNotStarted, |
252 |
> |
ibxeNotRequiredDataSetSource, |
253 |
> |
ibxeNoLimboTransactionInsert, |
254 |
> |
ibxeDatabaseNotConnected |
255 |
|
); |
256 |
|
|
257 |
|
function GetErrorMessage(ErrMess: TIBClientError): AnsiString; |
387 |
|
SServerNameMissing = 'Server Name Missing'; |
388 |
|
SQueryParamsError = 'Query Parameters missing or incorrect'; |
389 |
|
SStartParamsError = 'start Parameters missing or incorrect'; |
390 |
< |
SOutputParsingError = 'Unexpected Output buffer value (%d)'; |
390 |
> |
SOutputParsingError = 'Unexpected Output buffer value (%d) - %s'; |
391 |
|
SUseSpecificProcedures = 'Generic ServiceStart not applicable: Use Specific Procedures to set configuration params'; |
392 |
|
SSQLMonitorAlreadyPresent = 'SQL Monitor Instance is already present'; |
393 |
|
SDelphiException = 'DelphiException %s'; |
451 |
|
SCharacterSetExists = 'Character set "%s" is already defined'; |
452 |
|
SUnknownUserCharSet = 'Unknown user character set "%s"'; |
453 |
|
SUninitializedInputParameter = 'SQL Param No. %d (%s) is uninitialised'; |
454 |
+ |
SNegativeGenerator = 'A Generator Increment cannot be negative'; |
455 |
+ |
SServiceUnavailable = 'Request Service is not available'; |
456 |
+ |
SBadConnectString = 'Parse Error in Connect String'; |
457 |
+ |
SServiceNotStarted = 'Cannot Query running service until the service has been started'; |
458 |
+ |
SNotRequiredDataSetSource = 'Object of class %s is not a valid dataset source'; |
459 |
+ |
SNoLimboTransactionInsert = 'You cannot add to a Limbo Transaction list'; |
460 |
+ |
SDatabaseNotConnected = 'Cannot connect using an unattached database'; |
461 |
|
|
462 |
|
const |
463 |
|
IBErrorMessages: array[TIBClientError] of string = ( |
624 |
|
SInterfaceNotSupported, |
625 |
|
SCharacterSetExists, |
626 |
|
SUnknownUserCharSet, |
627 |
< |
SUninitializedInputParameter |
627 |
> |
SUninitializedInputParameter, |
628 |
> |
SNegativeGenerator, |
629 |
> |
SServiceUnavailable, |
630 |
> |
SBadConnectString, |
631 |
> |
SServiceNotStarted, |
632 |
> |
SNotRequiredDataSetSource, |
633 |
> |
SNoLimboTransactionInsert, |
634 |
> |
SDatabaseNotConnected |
635 |
|
); |
636 |
|
|
637 |
|
function GetErrorMessage(ErrMess: TIBClientError): AnsiString; |