Help for this page

Select Code to Download


  1. or download this
    my $output = '';
    my $buffer;
    while (my $n = read(INPUT, $buffer, 1024)) { $output .= $buffer };
    
  2. or download this
    sub foobarfribbleni {
        eval {$o->foo->bar->fribble->ni};
        die "failed to foobarfribbleni" if $@;
    };
    
  3. or download this
    sub foobarfribbleni {
        $o->foo or die "failed to foobarfribbleni";
    ...
        $o->fribble or die "failed to foobarfribbleni"
        $o->ni or die "failed to foobarfribbleni"
    }
    
  4. or download this
    # With exceptions
    eval {
    ...
        }
    };
    die $dbh->errstr if $@;
    
  5. or download this
    # Without exceptions
    $sth = $dbh->prepare(q{ SELECT region, sales FROM sales_by_region })
    ...
    while ($sth->fetch or die $dbh->errstr) {
        print "$region: $sales\n";
    }