You
can view the results of a Query as an array.
So
your query...
SELECT
date_numFROM dbo.DatesTimes
Where class_num = 4;
If test.recordcount
is greater than 0, you can access the results by using the following
syntax.
test.date_num[???]
Where ??? is a
number betwee
Ok so after a bit of guess work this is what I came
up with:
SELECT
date_numFROM dbo.DatesTimes
Where class_num = 4;
Is it possible to make this more efficient or
elegant (i.e. professional)?
Adaryl
I am trying to populate and array with data pulled
from a table. Forta is being a little fuzzy about the technique on how to do
this. Anybody have any input?
Adaryl