From: Paul D. <pa...@sn...> - 2003-01-17 19:36:51
|
Use of $sth->rows in Perl DBI is discouraged for obtaining a row count from SELECT statements, do to the fact that not all drivers return the row count reliably until all the rows have been fetched (if at all). Instead, the docs recommend counting the rows as you fetch them. Does the same apply to Ruby DBI? |