Cannot capture entire dataset in database table

I am trying to scrape a page and extract all of the data records captured in the dataset to a database while running a scraping session. I am using the same setup as the one in tutorial 2 and 5. I have set up the scraping session to run a script that calls some external .Net code to store the data into a database table. The problem is I can only get the very last record in the dataset into the database table. I have successfully outputted the extracted data to a file but I cannot get the same results into the database. Any ideas?

That would indicate that

That would indicate that you're just getting a dataRecord in your code. I can't tell you how to fix your code, but this should provide a good pointer:

http://community.screen-scraper.com/API/getAllDataRecords

How do I access the dataset from an external program

Thanks for your response!

I am using that particular code and it is working great for me when I write the data to a file but how do I write it to a database? How do I reference the dataset from external code? I am using asp.net vb. I am able to get the last record using Request.form but I need all the records.