I am translating an application from bde to dbxpress. I have to catch a specific exception, in BDE it was:
Code: Select all
E : EDBEngineError;
...
if E.Errors[I].NativeError = 20111 then
...
Francesco
Code: Select all
E : EDBEngineError;
...
if E.Errors[I].NativeError = 20111 then
...