Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare("SELECT * FROM foo WHERE bar='$baz'");
    $sth->execute;
    
  2. or download this
    my $sth = $dbh->prepare("SELECT * FROM foo WHERE bar=?");
    $sth->execute($baz);
    
  3. or download this
    {
        package ChristianDatabase;
    ...
        undef,
        "http://www.example.com/",
    );