Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare("INSERT INTO staff (first_name, last_name) VAL
    +UES (?, ?)");
    my $tuples = $sth->execute_array(
    ...
                $first_names[$tuple], $last_names[$tuple], $status->[1];
        }
    }
    
  2. or download this
    my $sth = $dbh->prepare("INSERT INTO temp_selectedTitles VALUES (?)");
    my $tuples = $sth->execute_array(
    ...
                $books[$tuple], $status->[1];
        }
    }