I am using ASP and trying to add a recordset to an array - arytree1dim(0) = rst.fields("hello"). The problem is that I do not no how many records there will be until after the query is run. Therefore, I cannot declare the array like "Dim aryTree1Dim(4)" as it may have any number of records. Is there a way to use an array like this without declaring its length.

THANKS.