Help for this page
my $sql = <<"SQL"; INSERT INTO $table ($column) VALUES (?) ... $sth->execute(...); my $rows = $sth->fetchall_arrayref( {} ); say "New id: " . $rows->[0]->{id};