tinita: mysql greenhorn

Beitrag lesen

Ich nehme mal an, du benutzt DBI?

  
my $sth = $dbh->prepare("SELECT * from apache_auth");  
$sth->execute;  
my @data;  
  
# pro zeile eine Hash-Referenz  
while (my $row = $sth->fetchrow_hashref) {  
    push @data, $row;  
}  

fertig.