251 |
|
ibxeServiceNotStarted, |
252 |
|
ibxeNotRequiredDataSetSource, |
253 |
|
ibxeNoLimboTransactionInsert, |
254 |
< |
ibxeDatabaseNotConnected |
254 |
> |
ibxeDatabaseNotConnected, |
255 |
> |
ibxMultiThreadRequired |
256 |
|
); |
257 |
|
|
258 |
|
function GetErrorMessage(ErrMess: TIBClientError): AnsiString; |
459 |
|
SNotRequiredDataSetSource = 'Object of class %s is not a valid dataset source'; |
460 |
|
SNoLimboTransactionInsert = 'You cannot add to a Limbo Transaction list'; |
461 |
|
SDatabaseNotConnected = 'Cannot connect using an unattached database'; |
462 |
+ |
SMultiThreadRequired = 'Multi-threading required for %s but not enabled. Please recompile with multi-threading support enabled. '+ |
463 |
+ |
'Hint: you probably need to add -dUseCThreads to the Custom Options.'; |
464 |
|
|
465 |
|
const |
466 |
|
IBErrorMessages: array[TIBClientError] of string = ( |
634 |
|
SServiceNotStarted, |
635 |
|
SNotRequiredDataSetSource, |
636 |
|
SNoLimboTransactionInsert, |
637 |
< |
SDatabaseNotConnected |
637 |
> |
SDatabaseNotConnected, |
638 |
> |
SMultiThreadRequired |
639 |
|
); |
640 |
|
|
641 |
|
function GetErrorMessage(ErrMess: TIBClientError): AnsiString; |