I'm consuming a web service using a stand-alone VBScript.
The web service returns to me a list of jobs, which I need to loop through and add to a SQL database.
I can either
- Run through the nodelist, reading the data and actioning the SQL insert in the loop.
or - Run through the nodelist building a recordset, then run through the recordset actioning the SQL inserts.
Option 1 has speed on its side, but option 2 just seems... cleaner somehow.