Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh_in->prepare("
       INSERT INTO my_table (
    ...
    $sth->execute(@fields[0..3]);
    
    $sth->execute((@fields, undef, undef, undef, undef)[0..3]);
    
  2. or download this
    my $sth = $dbh_in->prepare("
       INSERT INTO my_table (
    ...
    ");
    
    $sth->execute(@fields);