Help for this page

Select Code to Download


  1. or download this
    
    while ( my $records = fetch_next_5000_records_from_sth() ) {
      $runner->run( ..feed records to Amazon... );
    )
    
  2. or download this
    while ( my $record = $sth->fetch() ) {
      $runner->run(... feed record to service ...);
    }