Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare (q{
       INSERT INTO sponsor VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}
    );
    
  2. or download this
    my %sql_data = (
        name     => $name, 
    ...
    # values() is guarenteed to come out in the same order as keys()
    $sth->execute(values %sql_data) or die $dbh->errstr;
    $sth->finish();