Classic ASP BasicsFor beginner programmers starting with "classic" ASP 3, pre-".NET." NOT for ASP.NET 1.0, 1.1, or 2.0
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Classic ASP Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
Does anyone have any idea how to create an array so that I can write the recordsets into the textfile in a loop. How do I declare the array such that I write only 6 recordsets from the access database into textfiles instead of 8? Meaning I opt out 2 tables to export to textfiles.
let rst be the name of the record set used to fetch data and arr be the name of array.
arr=rst.GetRows()
will fill the array with whatever records fetched by rst. It will be a two dimensional array.The first script identifies the field and second one the record number.