in reply to How do I find the value MYSQL assigned to an AUTO_INCREMENT ID (int) Field?
my $sth = $dbh->prepare($sql); $sth->execute(); my $id = $sth->{'mysql_insertid'}; [download]