Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare("insert test(id, name) values(?, ?)");
    $sth->execute($id, $name);
    
  2. or download this
    $id = 'NULL' unless defined($id);
    $dbh->do("insert test(id, name) values($id, \"$name\")");