Well, your version of MySQL probably doesn't support
triggers, so you have to roll your own, so to speak.
You could make sure every one of your tables has a
timestamp field, so the secure server could poll every
minute or so all records with a timestamp that is less
than 60 seconds old.
Or, the way I did it, is I write a tiny file to a directory
every time I add a record to the unsecure DB, and
a directory watcher program I wrote instantly notices
every time a
new file is created in this directory and tells the secure
server to get to work because it knows that a new record
was just added. This week I'm on the Wintel platform so
my directory watcher program is of no use to you (it's
written in VBasic).
You may want to check out
http://www.25thandclement.com/~willi...cts/watch.html
fam:
http://oss.sgi.com/projects/fam/
for directory watchers that work on UNIX if you need
instantanious notification btn your databases.
-lv