Help for this page

Select Code to Download


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