On Fri, Jun 08, 2001 at 01:26:00PM -0500, Michael Wray wrote: > @nupdates=undef; This sets @nupdates to the one element list (undef). Try this instead: @nupdates = (); Ronald
- fetchrow_arrayref Michael Wray
- Ronald J Kimball
On Fri, Jun 08, 2001 at 01:26:00PM -0500, Michael Wray wrote: > @nupdates=undef; This sets @nupdates to the one element list (undef). Try this instead: @nupdates = (); Ronald