Help for this page
use SQL::Abstract; ... my %value_of = ( name => 'Martin', age => 28 ); my ($stmt,@bind) = $abstractor->insert( 'table', \%value_of ); $dbh->do( $stmt, undef, @bind );
my %h; @h{@keys_wanted} = ();