Help for this page

Select Code to Download


  1. or download this
    use Storable qw(freeze thaw);
    use DBI;
    ...
    my $result = $sth->fetchrow_arrayref();
    my $data = thaw($result->[0]);
    print Dumper($data);
    
  2. or download this
    $VAR1 = {
              'e' => [
    ...
                       'd' => 3
                     }
            };