Help for this page

Select Code to Download


  1. or download this
    my $proj_id_sth = $dbh->prepare( "select project_name,project_id from 
    +projects" );
    $proj_id_sth->execute;
    ...
        my ( $pr_name, $pr_id ) = @$row;
        $proj_name_id{$pr_name} = $pr_id;
    }