AW: Database Update Notification

2004-01-06 Thread Anton Liebetrau
Cc: [EMAIL PROTECTED] Betreff: Database Update Notification Hi, I am trying to build an application in Java (1.4.2) which will have a notification mechanism to notify various components within the system when database changes occur. Since MySQL does not support triggers I am trying to figure out

Re: Database Update Notification

2004-01-06 Thread robert_rowe
MySQL 5.0 does support triggers. It is still alpha though. You might try using a timestamp field and polling your tables at intervals. It won't be real time but it might be close enough. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://li

Database Update Notification

2004-01-06 Thread Sashi Ramaswamy
Hi, I am trying to build an application in Java (1.4.2) which will have a notification mechanism to notify various components within the system when database changes occur. Since MySQL does not support triggers I am trying to figure out an efficient way of implementing this. How can I know whe