RE: [JDBC] jdbc and unix signals

2001-07-11 Thread Peter Eisentraut
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

Re: [JDBC] jdbc and unix signals

2001-07-11 Thread Peter Eisentraut
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

RE: [JDBC] jdbc and unix signals

2001-07-11 Thread Nikk Anderson
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