Nikk Anderson writes:
> You can catch OS signals in java, although there are different signals for
> each OS. The following packages have signal functionality: sun.misc.Signal,
> sun.misc.SignalHandler.
The JDBC driver doesn't use these.
--
Peter Eisentraut [EMAIL PROTECTED] http://funktu
Nikk Anderson writes:
> Does the postgres driver catch the signals, thus overiding my attempts to
> catch them?
You can't catch signals in Java, because not all systems have signals.
You might be able to write native methods to do so, but consider
reconsidering your design.
--
Peter Eisentraut
Title: RE: [JDBC] jdbc and unix signals
Hi,
Peter Eisentraut writes:
>You can't catch signals in Java, because not all systems have signals.
>You might be able to write native methods to do so, but consider
>reconsidering your design.
You can catch OS signals in java, alth