print STDERR "Got here 1.3\n";
my @a = $sth_data->fetchrow_array() or die "fetchrow_array: $DBI::errstr\n";
print STDERR "Got here 1.4\n";
Sorry about the lack of version info, we're using DBI-1.40, DBD-Pg-1.31, and PostgreSQL-7.3.5. The query works fine in psql. The weird thing is that the program just ends...no error messages, nothing...it's just like there was an exit; buried in fetchrow_array(). Another thing is That this code worked fine with DBI-1.20 and DBD-Pg-1.01.
Try DBI->trace(4) before the fetchrow_array() call.
-- Mac :}) ** I usually forward private questions to the appropriate mail list. ** Ask Smarter: http://www.catb.org/~esr/faqs/smart-questions.html Give a hobbit a fish and he eats fish for a day. Give a hobbit a ring and he eats fish for an age.
