Reading from text files and writing to MS Access Database is slow in the first place (Access is not a true relational database, it's a file database), therefore, use something better if you could (MS SQL Server, Oracle, etc.).
If you have to use Access, don't use ADO build-in methods such as AddRecord, Delete, etc.
Code SQL statements instead, it's faster.