Help for this page

Select Code to Download


  1. or download this
    
    do {
    ...
            # do stuff here
         }
      } while ( defined( $sth->{odbc_more_results}) );
    
  2. or download this
    do {
         my @row;
    ...
            # do stuff here
         }
      } while ( $sth->{odbc_more_results} );
    
  3. or download this
    #!/usr/bin/env perl                                                   
    +                        
    
    ...