Help for this page

Select Code to Download


  1. or download this
        my $thing_query = qq{
            SELECT * FROM table 
    ...
            AND another_column = ? 
            AND name = ?
        };
    
  2. or download this
    my @ary = $dbh->selectrow_array(
        $thing_query,
    ...
        $column_info,
        $name
    );