Is there any way to debug a remote user from an apex application showing an oracle error?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should create an error-handling program in your Oracle database, which you can call it from your every program in the database and Oracle Apex. Below is an example:
Create a table to log errors:
Create a database procedure:
You can call the above procedure in every program of Oracle Apex. The following is an example:
Now, whenever a user reports an error, you will be able to check error details.
Thank you very much Vinish