Dave Thacker wrote:
> On Monday 01 September 2008 20:29:27 Rob Dixon wrote:
>>
>>  $- = 0;
> 
> Unfortunately, there's no change after inserting that assignment.   Thanks 
> for 
> the other info on the improving the preparation of the SQL statement.  I'll 
> do that as soon as I get this resolved.  Any other ways to attack this?

My apologies. That line alone would set the property on STDOUT, not the RF file
handle as require. Add

  use IO::Handle

at the top of your program, and then use

  open RF, '>', $roster_file or die "Can't open roster file $roster_file";
  RF->format_lines_left(0);

and I think it should work.

HTH,

Rob

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to