Help for this page

Select Code to Download


  1. or download this
    $sth->bind_param( $i++, $holidays->{$name}->{$_} ) foreach keys %{$hol
    +idays->{$name}};
    
  2. or download this
    $sth->bind_param( $i++, $holidays->{$name}->{$_} ) foreach qw/ name da
    +te type federal active /;
    
  3. or download this
     use SQL::Abstract;
     my $sql = SQL::Abstract->new;
    ...
       my($stmt, @bind) = $sql->insert('your_table_name', \%data);
       $dbh->do($stmt, {}, @bind);
     }