Help for this page

Select Code to Download


  1. or download this
    my @SQLs = map {
                 "INSERT INTO $_
                  (address_1, address_2,
    ...
            } qw( property property2 );
    
    my @sths = map {$dbh->prepare($_)} @SQLs;
    
  2. or download this
    my @results = map {$_->execute(@data)} @sths;