Help for this page

Select Code to Download


  1. or download this
    my @col_names = keys %{$sth->fetchrow_hashref};
    
  2. or download this
    my @col_names = @{$sth->{NAME}};
    
  3. or download this
    my @col_types = @{$sth->{TYPE}};