Re: What is the meaning of the rows value after a select?

2008-12-06 Thread Larry W. Virden
I have another question on this topic. The code currently does the following: $oraProdDBH = DBI-connect(...); $getMatchRec = $oraProdDBH-prepare (... the information about the select ...) $getMatchRec-execute() if ($oraProdDBH-rows != 0) This is the point where, in the current thread, I've

Commiting changes [Was: Re: What is the meaning of the rows value after a select?

2008-12-06 Thread Larry W. Virden
On Dec 1, 10:54 am, [EMAIL PROTECTED] (Larry W. Virden) wrote: I inherited some perl code that mostly works, but which I've a couple questions about what it is doing. Skipping miscellaneous comments, etc. the code sets some variables from a file, sets its oracle environment, and then does the

Re: DBI + ithreads performances

2008-12-06 Thread xhoster
[Message also posted to: perl.dbi.users] [EMAIL PROTECTED] (Davide Sacchetti) wrote: Dear users, I need to fetch data from two different database (A and B). I wrote a sequential code fetching from A and, after the fetch is finished, from B. Then I tried to use threads: I splitted the

Re: Commiting changes [Was: Re: What is the meaning of the rows value after a select?

2008-12-06 Thread Jonathan Leffler
On Fri, Dec 5, 2008 at 7:12 AM, Larry W. Virden [EMAIL PROTECTED] wrote: On Dec 1, 10:54 am, [EMAIL PROTECTED] (Larry W. Virden) wrote: I inherited some perl code that mostly works, but which I've a couple questions about what it is doing. Skipping miscellaneous comments, etc. the code