I have and application which uses Adodb to insert data in Oracle table(customers database).
- Data is successfully inserted if there are no errors.
- If there is any error like invalid datatype etc. Error is raised and captured by my application and dumped in log gile.
- My customer has written their own triggers on this particular table. When a record is inserted few other checking are done be fore the data insertion
Now all fine until now.
But recently we found that many a times data is not inserted in the oracle table.
- When checked in log file no error was found.
- Then I logged the query which was executed.
- Copied the query to oracle Sql prompt and executed it gave error of trigger.
My Issue is
- Customer is not ready to share the details of trigger.
- Error is not raised while inserting to oracle table so we are not able to log it or take any action.
- The same qry when executed directly in oracle the trigger errors are show.
Help needed for
- Why the error is not raised in ADODB
- Do I have to inform customer to implement any error raising
- Anything that you can suggest for resolving the issue
I have 0% to 10% knowledge of Oracle