in reply to Re: DBI Select results confussion
in thread DBI Select results confussion
I thought I knew of two separate ways for retriving data from a query..
1.Use bind, for example:
$query_is->bind_columns(\$count_is);
2.Use fetchrow_array(), for example:
@row = $query_is->fetchrow_array
.. could you (or someone else) show me how to use "bind" regarding the example in my first posting.
When I do bind (same code as in my original posting) but without the "fetchrow_array" line it does not output any data? i.e it only outputs data if I do the fetchrow_array command.
Thanks
M
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: DBI Select results confussion
by dws (Chancellor) on Nov 10, 2002 at 21:22 UTC | |
by heezy (Monk) on Nov 11, 2002 at 16:04 UTC |