I have some large files that all have data for filling one table. I'm concerned about memory resources.
1. I want to read from each of these files one line at a time at the same time without assigning the file to an array. I haven't done this one yet, Does anyone have any example code? I want to pass the lines in an array to a subroutine which does # 2. 2. Then combine the lines, plugging in elements according to index if that index hasn't been filled. This one is pretty easy to figure out.
