> What are the consequences of not calling ->finish()? I have several apps
> using DBD::Pg, and I don't think I've used it at all...
There don't appear to be any fatal consequences - all queries appear to
work fine. However, certain things such as the $sth->{'Active'}
attribute cannot be relie
Hello -
When using DBD::Pg through DBI, can somebody tell me if it is necessary
to be calling the $sth->finish routine? The DBI.pm documentation states
that there is no need to call it if you call $sth->fetchrow_xxxref until
the rows are exhausted - finish should get called automatically, and
$