in reply to Re^2: Process Text File and Write to Database
in thread Process Text File and Write to Database

It looks like I don't understand the use of 'next' in this context,
Yes. 'next' means "exit the block I'm in now, and skip anything (other than a continue block) afterwards." Every time you called 'next', your program skipped directly to the next iteration of the loop without going any further - in your original program, that's why only the
my $name = $connect->quote($_); next;
parts of the loop were being executed.