I am writing a script that runs a report on a mainframe and then does screen scrapes to collect data for inputting into an Access database.
Currently I am able to get the data from the screen scrapes into an array which I then write to my database one record at a time. This is much to slow as I am processing over 3000 records with 5 fields each everytime I run the script. It currently is taking about 30 minutes to complete and I need to reduce the to write the records to the database.
Is there a way that I can insert the entire array at one time into the database?
Currently I am able to get the data from the screen scrapes into an array which I then write to my database one record at a time. This is much to slow as I am processing over 3000 records with 5 fields each everytime I run the script. It currently is taking about 30 minutes to complete and I need to reduce the to write the records to the database.
Is there a way that I can insert the entire array at one time into the database?