Help for this page

Select Code to Download


  1. or download this
    $query = qq| INSERT INTO foo VALUES ( '$bar', '$baz' )|;
    $sth = $dbh->prepare($query);
    $sth->execute();
    
  2. or download this
    $query = qq| INSERT INTO foo VALUES ( ?, ? ) |;
    $sth = $dbh->prepare($query);
    $sth->execute($bar,$baz);