Help for this page

Select Code to Download


  1. or download this
    my $struct = $sth->fetchall_hashref('extracted_ads_id');
    
    ...
    }
    
    # access like $struct->{foo}->{prop_street_no}
    
  2. or download this
    my $h;
    while ( my $row = $sth->fetchrow_arrayref() ) {
    ...
    }
    
    # access like $h->{foo}->[0] will give you street no.