Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    #
    ...
        print $objRS->Fields('TABLE_NAME')->{value} . "\n";
        $objRS->MoveNext();
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    while (my $href = $sth->fetchrow_hashref()) {
        print $href->{TABLE_NAME} . "\n";
    }