Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare(<<__SQL__);
      SELECT * FROM $table;
    ...
    push @{$table_data}, $_ while $sth->fetchrow_hashref;
    
    $sth->finish;
    
  2. or download this
    my $sth = $dbh->prepare(<<__SQL__);
      SELECT * FROM $table;
    ...
    $table_data->{$_->{id}} = $_ while $sth->fetchrow_hashref;
    
    $sth->finish;