cBarry263
Active member
I have opened a connection to a database, and want to run a query to it. I have used:
objDataAdapter.SelectCommand.CommandText = "query"
Dim objDataSet As DataSet = New DataSet
objDataAdapter.Fill(objDataSet, "result")
When I run the query, where does the result get stored, and how would I get access to the results returned?
objDataAdapter.SelectCommand.CommandText = "query"
Dim objDataSet As DataSet = New DataSet
objDataAdapter.Fill(objDataSet, "result")
When I run the query, where does the result get stored, and how would I get access to the results returned?