Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

retrieve the data included in DataTable

Status
Not open for further replies.

tuzojazz

Programmer
Dec 26, 2005
58
MX
Hi:

I'm programing an asp.net (VB code) which calls a web service function which returns a DataSet.

A DataTable is included in the DataSet.

How Can I retrieve the data included in the DataTable?

can I use something like an OleDbDataReader to read stream of data rows?

Thanks!
 
bind the datatable to the datagrid...something like this:

mydatagrid.DataSource = mydatatable
nydatagrid.DataBind()

-DNG
 
You can use a Data Reader to read through the data as well. It just depends on what you want to do with the returned data as to how you read/display it.
 
If you want to access the DataTable in the DataSet, you can just reference the relevant table i.e.
Code:
myDataSet.Tables(0)
You can then bind this table directly to a data control (i.e. a GridView) or you can loop through it (faq855-5662).




____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
Can I use something like

myDataSet.Tables(0).Columns(1)

or what is the correct syntax?

When I get data column in this way, I get the data type just as the DataSet contain it?


 
what is the correct syntax?
Have you read the FAQ I linked to?


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top