in reply to How do I find the value MYSQL assigned to an AUTO_INCREMENT ID (int) Field?

FYI Using DBD::mysql 2.9004
Works
$id = $dbh->{mysql_insertid} $id = $dbh->{insertid} $id = $sth->{mysql_insertid}
Does Not Work
$id = $sth->{insertid}