When I get Oracle errors from my application, how do I get to know the description of the error and the source from the error number.
Printable View
When I get Oracle errors from my application, how do I get to know the description of the error and the source from the error number.
On error handler add line
msgbox err.number & " - " & err.Description
Iouri Boutchkine
[email protected]
how do I get the details of the error from the error number and the description.
eg.
the error description is 'Errors occured', from this how do I come to know the cause of the error.
The error description will give you the short description of your problem. It is not going to be just 'error occured'. By error number and description you will be able to understand the problem or to go to the knowledge base and find the details.
Iouri Boutchkine
[email protected]
Thank u very much for the support.
Rate it if it helped you
Iouri Boutchkine
[email protected]