DBI und fetchall_arrayref()
Alex
- perl
0 Struppi
Hallo,
wie kann ich bei DBI die Anzahl der Zeilen einer Tabelle ermitteln, wenn ich zuvor den Tabelleninhalt mit
my @dbRows = $sth->fetchall_arrayref()
hole?
merci
Alex
my @dbRows = $sth->fetchall_arrayref()
print scalar @dbRows;
Struppi.