472,950 Members | 2,177 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,950 software developers and data experts.

DataTable Subset to new DataTable

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
Jul 31 '08 #1
1 4685
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.

"jp2msft" <jp*****@discussions.microsoft.comwrote in message
news:DD**********************************@microsof t.com...
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

Jul 31 '08 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: jensen bredal | last post by:
I have an array of datarow . Is there a performance efficient way of deriving a datatable oject containing only the rows in my array. ? I want to avoid uding foreach . Many thanks JB
4
by: Rich | last post by:
Hello, I need to store various values that I will need to look up later on. I have been using hashtables and arraylists. But I can only store 2 items per row in a hashtable - key, value, and...
6
by: Pete Wittig | last post by:
Hi, I have a DataTable and I want to get a subset of the rows within it. I use the Select method to get my subset and the results are in a DataRow. I want to put those Rows back into a...
2
by: =?Utf-8?B?Sm9iIExvdA==?= | last post by:
How can I reconcile changes between two data table and create a subset of those changes. I have two data tables with same schema which gets populated from two different xml files. I want to get...
1
by: byrd48 | last post by:
Hi, am attempting to create a DataTable by copying a table from a data set, then filter the rows as follows: DataTable dt = DataSet1.Tables.Copy; DataRow dr = dt.Select("myexpression"); ...
2
by: ciccone1978 | last post by:
Hi everybody, Supposing I have a DataTable with the following columns . I need to copy that DataTable with all its data but filtered by columns, that is I want to have a new DataTable with all...
9
by: Nathan Sokalski | last post by:
I have a DataTable from which I only need a certain range of the DataRows. What I would like to do is copy a range of rows from one DataTable to a new DataTable like the following: For i As...
5
by: jehugaleahsa | last post by:
Hello: What is the point of using a DataTable in ASP .NET? We are unsure how you can use them without 1) rebuilding them every postback, or 2) taking up precious memory. We are not sure how to...
11
by: John Dann | last post by:
Is there a concise/efficient way to retrieve blocks of rows from a datatable with VB2005? I've got a datatable (let's call it AllData), constructed programmatically, that contains a lot of...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.