253 |
|
ibxeNoLimboTransactionInsert, |
254 |
|
ibxeDatabaseNotConnected, |
255 |
|
ibxeMultiThreadRequired, |
256 |
< |
ibxeODSVersionRequired |
256 |
> |
ibxeODSVersionRequired, |
257 |
> |
ibxeTokenQueueOverflow, |
258 |
> |
ibxeTokenQueueUnderflow, |
259 |
> |
ibxErrorParsing, |
260 |
> |
ibxeDLInfoError, |
261 |
> |
ibxeDifferentAPIs |
262 |
|
); |
263 |
|
|
264 |
|
function GetErrorMessage(ErrMess: TIBClientError): AnsiString; |
281 |
|
SDefaultTransaction = '%s, Default'; |
282 |
|
SFirebirdAPIFuncNotFound = 'Unable to load Firebird Client Library Function "%s"'; |
283 |
|
SDatabaseFilter = 'Database Files (*.fdb; *.gdb)|*.gdb; *.fdb|All files (*.*)|*.*'; |
284 |
+ |
{$IFDEF WINDOWS} |
285 |
+ |
SLibraryNameFilter = 'DLLs (*.dll)|*.dll|All files (*.*)|*.*'; |
286 |
+ |
{$ELSE} |
287 |
+ |
SLibraryNameFilter = 'All files (*.*)|*.*'; |
288 |
+ |
{$ENDIF} |
289 |
|
STrue = 'true'; |
290 |
|
SFalse = 'false'; |
291 |
|
SArray = '(array)'; |
473 |
|
SMultiThreadRequired = 'Multi-threading required for %s but not enabled. Please recompile with multi-threading support enabled. '+ |
474 |
|
'Hint: you probably need to add -dUseCThreads to the Custom Options.'; |
475 |
|
SODSVersionRequired = 'This feature requires ODS Version %s or later'; |
476 |
+ |
STokenQueueOverflow = 'Error in SQL Token Analyser - token queue overflow'; |
477 |
+ |
STokenQueueUnderflow = 'Error in SQL Token Analyser - token queue underflow'; |
478 |
+ |
SErrorParsing = 'Error parsing SQL Statement at clause starting with %s'; |
479 |
+ |
SDLInfoError = 'dlinfo returned error - %s'; |
480 |
+ |
SDifferentAPIs = 'All transaction attachments must use the same Firebird Library'; |
481 |
|
|
482 |
|
const |
483 |
|
IBErrorMessages: array[TIBClientError] of string = ( |
653 |
|
SNoLimboTransactionInsert, |
654 |
|
SDatabaseNotConnected, |
655 |
|
SMultiThreadRequired, |
656 |
< |
SODSVersionRequired |
656 |
> |
SODSVersionRequired, |
657 |
> |
STokenQueueOverflow, |
658 |
> |
STokenQueueUnderflow, |
659 |
> |
SErrorParsing, |
660 |
> |
SDLInfoError, |
661 |
> |
SDifferentAPIs |
662 |
|
); |
663 |
|
|
664 |
|
function GetErrorMessage(ErrMess: TIBClientError): AnsiString; |