bluenoser337
Programmer
My Access 2000 DB has data being written to a single table from a VB6 application (ADO). At around 170,000 records, the time required to store a record can be as long as 10 seconds. At zero records, I can store more than 10 per second. What causes the slowdown...and is there a way around it? With each record insertion I open and then close the connection.
connection.open
set rst = new adodb recordset
rst.open
rst.addnew
rst!"fields"
etc
etc
rst.update
rst.close
connection.close
Of course, not all the code is shown here.
connection.open
set rst = new adodb recordset
rst.open
rst.addnew
rst!"fields"
etc
etc
rst.update
rst.close
connection.close
Of course, not all the code is shown here.