Help for this page

Select Code to Download


  1. or download this
    my @arr = qw(one two three);
    my $qry = $dbh->prepare('select foo from bar where baz=?');
    ...
        $qry->execute($baz);
        ...
    }