Help for this page

Select Code to Download


  1. or download this
       while (my $ref = $sth->fetchrow_hashref ()){
    #        #warn("generateResponseHash line 587 ref: '$ref'");
    ...
          }
         $sth->finish ();
         completeResultHash(%hash_record);
    
  2. or download this
    my $result = $sth->fetchrow_hashref();
    my $json_str = encode_json($result);
    print $json_str;
    exit(0);