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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Select Data From A in Memory Dataset

Status
Not open for further replies.
Nov 14, 2004
8
US
I have a dataset in memory created from a xml file that I would like to select the first ten records how do i do this. Basically how to select data from a dataset that was created in memory into a new datatable
 
You can use the dataset.table(index).select method to return an array of datarows. or you could just loop through the rows collection of the data table and stop after ten.

-Rick

----------------------

[monkey]I believe in killer coding ninja monkeys.[monkey]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top