Re: anyway to determine # rows before fetch loop ends and without seperate count(*)

2005-11-17 Thread listmail
[EMAIL PROTECTED] wrote: #Here's an example which shows what I am trying to accomplish. If I can determine the number of rows before pushing the data, this can simply things for #me when processing the data throught my scripts. # use warnings; use strict; Good good :)

Re: DBD::Oracle

2005-11-17 Thread Jay Strauss
On Wednesday 16 November 2005 3:01 pm, piet paaltjens wrote: Dear Jay, some time ago you've helped me to try and get Oracleinstantclient 10.2 to work on my machine. You even sent me your installed software. For me, alas, it did not work. Just to let you know, recently I've found info

ANNOUNCE: Rose::DB::Object 0.50 released

2005-11-17 Thread John Siracusa
RDBO has been bumped to the big 0.50. (Hey, that's half way to 1.0, right? :) There have been many changes (bug fixes and significant new features) since the last announcement to this list. The full change summary is below. The most significant change is probably the addition of an extensive

Re: anyway to determine # rows before fetch loop ends and without seperate count(*)

2005-11-17 Thread JupiterHost.Net
Also very convoluted, all of that can be done with: my $results = $dbh-selectall_arrayref($sql); # if you only want to process a certain amount just LIMIT in your $sql... I appreciate the response. I tested selectall_arrayref and as I expected, irregardless of the number of rows