246 |
|
ibxeUnknownUserCharSet, |
247 |
|
ibxeUninitializedInputParameter, |
248 |
|
ibxeNegativeGenerator, |
249 |
< |
ibxeServiceUnavailable |
249 |
> |
ibxeServiceUnavailable, |
250 |
> |
ibxeBadConnectString, |
251 |
> |
ibxeServiceNotStarted, |
252 |
> |
ibxeNotRequiredDataSetSource, |
253 |
> |
ibxeNoLimboTransactionInsert, |
254 |
> |
ibxeDatabaseNotConnected |
255 |
|
); |
256 |
|
|
257 |
|
function GetErrorMessage(ErrMess: TIBClientError): AnsiString; |
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 = ( |
626 |
|
SUnknownUserCharSet, |
627 |
|
SUninitializedInputParameter, |
628 |
|
SNegativeGenerator, |
629 |
< |
SServiceUnavailable |
629 |
> |
SServiceUnavailable, |
630 |
> |
SBadConnectString, |
631 |
> |
SServiceNotStarted, |
632 |
> |
SNotRequiredDataSetSource, |
633 |
> |
SNoLimboTransactionInsert, |
634 |
> |
SDatabaseNotConnected |
635 |
|
); |
636 |
|
|
637 |
|
function GetErrorMessage(ErrMess: TIBClientError): AnsiString; |