Help for this page

Select Code to Download


  1. or download this
    my $cvterm_id;  # this scalar is going to be a hashref
      while (my $hashref = $sth->fetchrow_hashref) {
        $$cvterm_id{$$hashref{termname}} = $$hashref{cvterm_id};
      }
    
  2. or download this
    my $cvterm_id;  # this scalar is going to be a hashref
      while (my $hashref = $sth->fetchrow_hashref) {
        $cvterm_id->{$$hashref{termname}} = $$hashref{cvterm_id};
      }
    
  3. or download this
    my $cvterm_id;  # this scalar is going to be a hashref
      while (my $hashref = $sth->fetchrow_hashref) {
        $cvterm_id->{$hashref->{termname}} = $hashref->{cvterm_id};
      }