We have a situation which requires calling a java function as part of
database trigger.
I am using Java 1.6 and database is MySQL 5.1
Actual problem goes like this:
We have number of systems, each running number of processes on them.
We need to monitor health of these processes and need to report it to
the Clients sitting at remote place.
Each of these processes will be updating their progress information in
database at regular interval of time.
So what we need is to update status indicator in client GUI as soon as
status update is inserted in database by the process.
For this we are planning to write an insert trigger and in that
trigger we need to call java function which will update the Client
GUIs remotely.
Please guide me to call java function in MySQL trigger.
Thanks in advance.