RE: select from oracle and write to file

2002-05-01 Thread Shah, Urmil
ot; requires explicit package name at ./one.pl line 26. Any input as to why this happens?? -garrett >From: "Shah, Urmil" <[EMAIL PROTECTED]> >To: garrett esperum <[EMAIL PROTECTED]> >Subject: RE: select from oracle and write to file >Date: Tue, 30 Apr 2002 17:34:

RE: select from oracle and write to file

2002-05-01 Thread DeBaets, Kirk
Between execute and finish add fetchrow_array() to get the result set, and then do with the rows what you wish. E.g., my @row; while ( @row = $sth->fetchrow_array() ){ print "Row: @row\n"; } -Original Message- From: garrett esperum [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30,

Re: select from oracle and write to file

2002-04-30 Thread David vd Geer Inhuur tbv IPlib
Hi Garrett, Not shure if this is where you are looking for, but here is some simple info on how to write data to a file. If it is not sufficient you'll have to wait for the real ones to wake up :) $file = "/path/to/file"; open(F, "> $file"); print F "What you want to store in your file, can al

RE: select from oracle and write to file

2002-04-30 Thread garrett esperum
kage name at ./one.pl line 26. Any input as to why this happens?? -garrett >From: "Shah, Urmil" <[EMAIL PROTECTED]> >To: garrett esperum <[EMAIL PROTECTED]> >Subject: RE: select from oracle and write to file >Date: Tue, 30 Apr 2002 17:34:24 -0500 > > >open(T