Help for this page

Select Code to Download


  1. or download this
    $dbh->do ('INSERT into teach_info (pickup, pmonth, pday, pyear)
    
  2. or download this
    my $sql = "INSERT into teach_info values ($pickup,$pmonth, $pday, $pye
    +ar)";
    
  3. or download this
    use DBI;
    use strict;
    ...
    );
    my $sth = $dbh->prepare("INSERT into teach_info values(?,?,?,?)");
    $sth->execute($pickup, $pmonth, $pday, $pyear);