in reply to I need to tell what I pulled from SQL
But depending on *why* you need to know how many rows are returned, the best solution may not be in Perl or DBI but in your database. You should either consider using SQL statements like "select count(*) from poll where ..." and checking that the count is one, or consider building your table keys (using uniqueness) so that the criteria of this sort of SQL statement can return only one row.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: I need to tell what I pulled from SQL
by BorgCopyeditor (Friar) on Jul 22, 2002 at 18:18 UTC | |
by ichimunki (Priest) on Jul 22, 2002 at 19:54 UTC |