|
I'm experiencing a bug that was reported over a year ago, the errror:
DBI handle 0xa1984f4 cleared whilst still active.
dbih_clearcom (sth 0xa1984f4, com 0xa199118, imp DBD::AnyData::st):
FLAGS 0x182115: COMSET Active Warn PrintError PrintWarn ShowErrorStatement
PARENT DBI::db=HASH(0xa1983e0)
KIDS 0 (0 Active)
IMP_DATA undef
NUM_OF_FIELDS 30
NUM_OF_PARAMS 0
even after $sth->finish() is called.
I've gotten around the error by calling
$sth->finish();
$sth->{Active} = 0;
but I'm not certain that's a good workaround. |