On Tue, 17 Feb 2004, Dianne Yumul wrote: > Date: Tue, 17 Feb 2004 15:45:17 -0800
> I'm having a problem with the code below. The program exits when it gets to > the fetchrow_array() statement. It doesn't print an error message and it > doesn't die. We checked the temporary table, and it exists with the right > fields. STDERR shows the "Got here 1.3" line but not the "Got here 1.4" > line. Is there anything I missed or does anybody have ideas on what can be > wrong? > You probably have a unknown (to DBD::Pg) column type in your table. And thereis a bug in 1.31 where an unknown column will cause a null pointer deref and your program will exit with a SIGSEGV. Try 1.32_1 on CPAN and see if that fixes your problem. Rudy
