Help for this page

Select Code to Download


  1. or download this
    my $row = $dbh->selectrow_hashref("SELECT * FROM table WHERE idTable =
    + ?", under, $id);
    
  2. or download this
    my $row = $dbh->selectrow_array("SELECT * FROM table WHERE idTable = ?
    + AND some_column = ? AND another_column = ? AND name = ?", under,
        $table_id,
        $column_data,
        $column_info,
        $name);
    
  3. or download this
    my $row = $dbh->selectrow_array("SELECT * FROM table WHERE idTable = ?
    + AND some_column = ? AND another_column = ? AND name = ?", under,
        $table_id, $column_data, $column_info, $name);