Given a Dataset [oRecs] generated by an SQL query.
I want to isolate/extrat some specific date
C# CODE:
oRecs = oDB.GetRecords("select [X] from
where [Y] = " + strName + "");
This will generate a dataset [oRecs] with one row of data [only one result from the query] and one column [X].
I need to pass that value in Column [X] (as a string) to a function on the next line.
So the question is, how do I isolate the value in the Dataset itself?
I want to isolate/extrat some specific date
C# CODE:
oRecs = oDB.GetRecords("select [X] from
This will generate a dataset [oRecs] with one row of data [only one result from the query] and one column [X].
I need to pass that value in Column [X] (as a string) to a function on the next line.
So the question is, how do I isolate the value in the Dataset itself?