Alex: DBI und fetchall_arrayref()

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

  1. my @dbRows = $sth->fetchall_arrayref()

    print scalar @dbRows;

    Struppi.