Help for this page

Select Code to Download


  1. or download this
    $dbh->do("INSERT INTO body (Body) Values (?)",
             $body);
    
  2. or download this
    $dbh->do("INSERT INTO body (Body) Values (?)",
             undef, $body);
    
  3. or download this
             $rv  = $dbh->do($statement);
             $rv  = $dbh->do($statement, \%attr);
             $rv  = $dbh->do($statement, \%attr, @bind_values);