> while (my @row = $sth->fetchrow_array()) {
> print join("\t", @row), "\n";
> }
i've tryed this... but it hasn't worked... i will re-try our...
> my $sql = 'SELECT COUNT(*) FROM temp';
yes - but this will result in a additional select and therefor more database
activity :-(
> my $i = 0;
> while (my @row = $sth->fetchrow_array()) {
> $i++;
> }
very difficult in my code... i will have a look if i can change the code.
isn't it possible without a "while" ?
Alex
