Re: sigtrap disabled after DBI->connect

2010-03-03 Thread Lincoln A. Baxter
I think you are running afowl of perl's "safe" signal handling. Read about Perl Signal Handling and Oracle here: http://search.cpan.org/~lbaxter/Sys-SigAction/ In particular, look at http://search.cpan.org/~lbaxter/Sys-SigAction/dbd-oracle-timeout.POD This is referenced in the DBI/DBD::Oracle do

Re: DBD::Oracle for 64 bit windows

2010-03-03 Thread John Scoles
Great to hear a least I was helpful to someone. cheers I got it to work finally after a huge help from John Scoles.. I needed the DBD:Oracle for 64 bit and needed to download a full version of Visual Studio that had 64 bit compilers. It appears the Visual Studio C++ express doesn't have the co

Re: sigtrap disabled after DBI->connect

2010-03-03 Thread Hendrik Schumacher
"use sigtrap" is probably executed at compile time and thus before the connect regardless of its location in the source code. You could try if your signal handler works during the readline if you set $SIG{'INT'} = 'SigExit'; (same for HUP and KILL) after the connect. Hendrik Am Di, 2.03.2010, 21:

Re: sigtrap disabled after DBI->connect

2010-03-03 Thread Martin Evans
Steve Lynn wrote: > On Mar 2, 2:30 am, martin.ev...@easysoft.com (Martin Evans) wrote: >> Lynn, Steve wrote: >>> All - I'm under Solaris using perl v. 5.8.3 and DBI v. 1.48. I can catch >>> signals w/o a problem before I connect to the database. >>> However after I connect, I can't catch signals

RE: DBD::Oracle for 64 bit windows

2010-03-03 Thread TAYLOR, DANIEL L (ATTSI)
I got it to work finally after a huge help from John Scoles.. I needed the DBD:Oracle for 64 bit and needed to download a full version of Visual Studio that had 64 bit compilers. It appears the Visual Studio C++ express doesn't have the compilers on x86 versions. After I installed the full ve

Re: sigtrap disabled after DBI->connect

2010-03-03 Thread Steve Lynn
On Mar 2, 2:30 am, martin.ev...@easysoft.com (Martin Evans) wrote: > Lynn, Steve wrote: > > All - I'm under Solaris using perl v. 5.8.3 and DBI v. 1.48.  I can catch > > signals w/o a problem before I connect to the database. > > > However after I connect, I can't catch signals anymore.  If I comm