Help for this page

Select Code to Download


  1. or download this
    while ( my $ref = $self->fetch_assoc($sth) )
    
  2. or download this
    my $dbh = DBI->connect(@db_args);
    my $sql = "SELECT email FROM database.table";
    ...
    $sth->execute();
    while (my $hashref = $sth->fetchrow_hashref) {
        ...
    
  3. or download this
    my $sth = $db->query($sql)...