listsql
Brought to you by:
vittal
Soupermail.pl (v1.08)
When using sql functions, Soupermail doesn't seem to
finish the DBI connection before closing.
the error report in the debug log is something like;
DBI::db=HASH(0x84786a0)->disconnect invalidates 1
active statement handle (either destroy statement
handles or call finish on them before disconnecting)
I fixed this by adding;
line 2314
2313: }
add $sth->finish;
2314: $dbh->disconnect();
Hope this helps.
Yours,
Taco Hamers.
(taco@sprint.nl)