I need to do some processing after any changes are committed
Is it possible to do this ?
I am using TOraSession and TOraQuery in my forms. I would like to avoid requiring using TOraQuery to do this because it is not defined at a high enough level in my form hierarchy. I have a TOraSession in my highesst level / parent form so I would ideally like to do something at that level.
What are my options ?
thanks
hook into post-commit
Hello
We don't have events that allow catching all commit to database. The reason is that this event will not be useful without the information about stored data, the table, where data is stored, and the column. But in many cases this information is inaccessible (if you save data by a SQL query or by a stored procedure). This information can be available if you post data by the Edit/Append/Insert/Post methods only. But in this case your dataset has event handlers (for example OnPost) to handle these events.
We don't have events that allow catching all commit to database. The reason is that this event will not be useful without the information about stored data, the table, where data is stored, and the column. But in many cases this information is inaccessible (if you save data by a SQL query or by a stored procedure). This information can be available if you post data by the Edit/Append/Insert/Post methods only. But in this case your dataset has event handlers (for example OnPost) to handle these events.