Is there a way to speed up inserts to a mdb?
using (StreamReader sr = new StreamReader(_localDir + \"\\\\\" + _filename)) while ((line = sr.ReadLine()) !=
You'd probably realize some performance benefits by moving the loop inside of the using blocks. Create 1 connection/command and execute it N times instead of creating N connections/commands.