in reply to Re: Modification of a read-only
in thread Modification of a read-only

tye makes a valid point (I'm cutting too many corners lately) but your response appears much closer. Yes it is a Sybase database. I'm using fetchrow_arrayref for performance reasons (I'm processing half a million records, about 350Mb of data). I've still got the problem. I want to change the data in the array reference to get rid of warnings but don't want the performance hit of creating another array. Doh!

Replies are listed 'Best First'.
Re: Re: Re: Modification of a read-only
by mpeppler (Vicar) on Oct 09, 2001 at 01:03 UTC
    I'd use a

    local $^W = 0;
    to get rid of the warnings...

    Michael