Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Languages / C# / July 2008

Tip: Looking for answers? Try searching our database.

DataTable Subset to new DataTable

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
jp2msft - 31 Jul 2008 16:01 GMT
How would I copy all data from my DataSet that meets a filtering condition to
a new DataTable?

Is this what I want?

DataTable table = new DataTable();
table = DataSet1.Table[0].DefaultView.RowFilter(filterString).Copy();

This still copies over all of the data, but adds a filter. Right?

This also creates a Default View on the first DataTable in my DataSet, which
I do not want.

After copying the filtered data to a new DataTable, I need to further filter
the DataTable about 3 more times and combine it's data with another
DataTable's data and filter that, too.

Any pointers or suggestions would be appreciated.

I wasn't able to locate this information in the Hitchhiker's Guide to Visual
Studio and SQL Server (#7).

Regards,
Joe
Maxwell - 31 Jul 2008 18:32 GMT
You may look at the DataTable.Select method, which, granted, returns an
array of DataRow objects, but then you could Add these to a
dataTable1.Clone() in a foreach loop.

Not an all-in-one solution, but you might give it a go.

> How would I copy all data from my DataSet that meets a filtering condition
> to
[quoted text clipped - 24 lines]
> Regards,
> Joe

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.