Help for this page

Select Code to Download


  1. or download this
    my %hash = (
       id => 'foo',
       id => 'bar',
       id => 'baz',
    );
    
  2. or download this
    my $sth = $dbh->prepare('select 1,1,1');
    
    ...
    $sth = $dbh->prepare('select 1 as a,1 as b,1 as c');
    $sth->execute;
    print Dumper $sth->fetchrow_hashref;