On 4/18/05, Denesa K Shaw <[EMAIL PROTECTED]> wrote:
> DBI::db=HASH(0x2035aef0)->disconnect invalidates 1 active statement handle
> (either destroy
> statement handles or call finish on them before disconnecting)

Well, you need "either destroy statement handles or call finish on
them before disconnecting".

Something like:
       $func->finish;
after "$func->execute" and
       $sql->finish
after "$sql->execute".

There's nothing wrong with that: it is a warning that maybe you would
prefer to be more explicit with dismissing the statements.

Regards,
Adriano.

Reply via email to