in reply to Implementing a buffered read-and-insert algorithm
It's not clear to me why you consider your buffered loader to be better than the more straightforward
while (<FH>) { $sth->execute(split(',')); } [download]