Can the subroutine DBI::execute disable a timer interrupt $SIG{ALRM}?
I set up a timeout handler using $SIG{ALRM} and I use alarm to set the timer. However, it appears that the timeout will NOT occur while a DBI::execute call is executing a query.
In the past, I noticed that, when I use DBI subroutines in a Perl script, I can't halt the script's execution with a ctrl-C.
My conjecture is that DBI::execute turns off interrupts. I can't find any literature to confirm my conjecture.
If my conjecture is valid, it there a way to prevent the disabling?