Help for this page

Select Code to Download


  1. or download this
    sub _insert_to_db {
      my $self = shift;
    ...
             croak "Failed to insert $sql: \n $@";
       }
    }
    
  2. or download this
         open(local *IN, '<', "file.pdf");
         $self->{'data'} = do {local $/, <IN>};
         close IN;