Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use DBI;
    ...
    $dbhq->execute();
    
    print Dumper($dbhq->fetchall_arrayref());
    
  2. or download this
    ...
    my $query = qq{
    select * from blah_table where col1 = :p0
    ...
    ...
    my @args = ('foo_param0', 'foo_param1');
    ...