T
tshad
I have a dataset that I am going to navigate through and need to set up an
array beforehand.
******************************************
Dim oData as new DataSet()
Dim oAdpt as new SqlDataAdapter(sQuery,objConn)
oAdpt.Fill(oData,"tempTable")
for each dr as datarow in oData.Tables(0).Rows
trace.warn("Inside Datarow navigation" & dr("answer"))
next
*******************************************
Is there a property (oData.Tables(0).?) that would tell me how many rows are
in the table that were returned?
Thanks,
Tom.
array beforehand.
******************************************
Dim oData as new DataSet()
Dim oAdpt as new SqlDataAdapter(sQuery,objConn)
oAdpt.Fill(oData,"tempTable")
for each dr as datarow in oData.Tables(0).Rows
trace.warn("Inside Datarow navigation" & dr("answer"))
next
*******************************************
Is there a property (oData.Tables(0).?) that would tell me how many rows are
in the table that were returned?
Thanks,
Tom.