How to convert DATASET to ARRAY output

hemasnet@yahoo.com

New member
Joined
Mar 29, 2006
Messages
1
Programming Experience
1-3
Hello friends,

I have a DATASET which results from an Stored Procedure output. I have a task to output this DATASET to a ARRAY in a method. I am finding difficult to get this worked out. If anyone has a tip or code to do this..I would greatly appreciate..

Thanks in advance...
 
I guess that you would have to initalize the upper bounds of the array based on the number of records in the dataset. Next loop through the dataset and add each row as an element in the array.....
 
Back
Top