Check out:
http://dev.mysql.com/doc/mysql/en/ANSI_diff_Triggers.html
- Tod
>Even then the question is whether you could make the trigger call back
>into you Java application. I doubt that.
If your DB Trigger language is Java, you are likely running in a
different JVM than the method you want to talk to, but that does not
mean communication is impossible. You still have sockets, pollable
records, RMI etc. as possible routes of communication.
see http://mindprod.com/jgloss/remotefileio.html

Signature
Canadian Mind Products, Roedy Green.
Coaching, problem solving, economical contract programming.
See http://mindprod.com/jgloss/jgloss.html for The Java Glossary.
Robert Klemme - 29 Jun 2004 17:23 GMT
> >Even then the question is whether you could make the trigger call back
> >into you Java application. I doubt that.
[quoted text clipped - 3 lines]
> mean communication is impossible. You still have sockets, pollable
> records, RMI etc. as possible routes of communication.
Yes, of course. But I chances are you'll have to implement the
communication on your own (using plain sockets, RMI, CORBA or whatever).
If SP language != Java, then it's even more difficult, although I guess
it's possible to implement SP's in C or some other language where you can
do IO and networking.
Regards
robert
> see http://mindprod.com/jgloss/remotefileio.html