176 |
|
ibxeUpgradeFailed, |
177 |
|
ibxDBVersionProblem , |
178 |
|
ibxeResourceFileNotFound, |
179 |
< |
ibxePatchFileNotFound |
179 |
> |
ibxePatchFileNotFound, |
180 |
> |
ibxeUnrecognisedParamName, |
181 |
> |
ibxeBadQueryReplay |
182 |
|
); |
183 |
|
|
184 |
|
function GetErrorMessage(ErrMess: TIBClientError): AnsiString; |
321 |
|
SDBVersionProblem = 'Database Version too low. Required %d, found %d'; |
322 |
|
SResourceFileNotFound = 'Unable to load resource file "%s"'; |
323 |
|
SPatchFileNotFound = 'In section [%s] of the Upgrade File (%s), unable to open %s (SQL script to patch).'; |
324 |
+ |
SUnrecognisedParamName = 'Unrecognised Parameter Name (%s)'; |
325 |
+ |
SBadQueryReplay = 'Playback execution error for "%s"' + LineEnding + '%s'; |
326 |
|
|
327 |
|
const |
328 |
|
IBErrorMessages: array[TIBClientError] of string = ( |
426 |
|
SUpgradeFailed, |
427 |
|
SDBVersionProblem, |
428 |
|
SResourceFileNotFound, |
429 |
< |
SPatchFileNotFound |
429 |
> |
SPatchFileNotFound, |
430 |
> |
SUnrecognisedParamName, |
431 |
> |
SBadQueryReplay |
432 |
|
); |
433 |
|
|
434 |
|
function GetErrorMessage(ErrMess: TIBClientError): AnsiString; |