Thread [MySQL]Gesamte Tabelle auslesen... (11 answers)
Opened by zipster at 2006-03-13 16:35

pktm
 2006-03-13 17:03
#34111 #34111
User since
2003-08-07
2921 Artikel
BenutzerIn
[Homepage]
user image
Quote
Fetches the next row of data and returns it as a list containing the field values.


Du müsstest folglich sowas wie
Code: (dl )
1
2
3
4
  my @array = ();
while(my $row = $sth->fetchrow_arrayref) {
push @array, $row;
}


bauen.
http://www.intergastro-service.de (mein erstes CMS :) )

View full thread [MySQL]Gesamte Tabelle auslesen...