Help for this page
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]; } }
my $sth = $dbh->prepare("INSERT INTO temp_selectedTitles VALUES (?)"); my $tuples = $sth->execute_array( ... $books[$tuple], $status->[1]; } }