Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare('SELECT foo, bar, baz FROM ? WHERE ...');
    $sth->execute('blah');
    
  2. or download this
    my $sth = $dbh->prepare('SELECT foo, bar, ? FROM blah WHERE foo = 1 AN
    +D bar = 2');
    $sth->execute('baz');