# Cursor를 open한다.
if ($sth->execute == 0) {
#$sth->finish;
$sth->execute;
$dbh->disconnect;
die "ERROR in execute!\n";
}
에러 소스입니다..
에러가 나오는 라인은 $dbh->disconnect; 32라인입니다..
DBI::db=HASH(0x8176b48)->disconnect invalidates 1 active statement handle (eith......
ERROR in execute!
에러 내용입니다...
잘좀부탁드립니다..
|