473,503 Members | 1,648 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Converting dataset to dataview and sorting?

I have a dataset with one table, which has four columns. All are of
type INT. I need to convert this dataset into a dataview so I can sort
on the last three columns. I may sort one of the three or all three at
once. This dataview will display its results in a winform datagrid.

Right now, I create the dataset from a datareader:

while(dr.Read())
{
drow = _filteredCriteriaDataSet.Tables[0].NewRow();
drow[0] = dr.GetValue(0);
drow[1] = dr.GetValue(1);
drow[2] = dr.GetValue(2);
drow[3] = dr.GetValue(3);
_filteredCriteriaDataSet.Tables[0].Rows.Add(drow);
}

How do I convert the dataset to a dataview then take the three criteria
and apply them to the new created dataview?

Thanks,
Brett

Dec 31 '05 #1
7 8687
KJ
Where "dt" represents your table and "foo" the column name to sort on:

DataView dv = new DataView(dt);
dv.Sort = "foo";

Dec 31 '05 #2
I did that but need to sort this way:

"col1 = " + col1criteria + " and col2 = " + col2criteria + " and col3 =
" + col3criteria

I apply that to the sortfilter but always get the same results in the
grid, which don't match the above sorting. I can look at "dv" in the
debugger and see its "Items". The row values are matching the criteria
I'm sending in. What could be causing it not to match the query?

Thanks,
Brett

Dec 31 '05 #3
KJ
OK, maybe you are thinking of the .Select method of DataTable?:

(from MSDN)

public DataRow[] Select(
string filterExpression,
string sort,
DataViewRowState recordStates
);

Dec 31 '05 #4
I did try .Select but get the same thing - nothing. For some reason,
none of the sorting or querying has any affect.

Brett

Dec 31 '05 #5
Brett,

Sorting is a way of ordering results.

What you are doing is trying to filter the results. You want to set the
RowFilter property to this string, and then it should filter your results
out appropriately.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Brett Romero" <ac*****@cygen.com> wrote in message
news:11*********************@g47g2000cwa.googlegro ups.com...
I did that but need to sort this way:

"col1 = " + col1criteria + " and col2 = " + col2criteria + " and col3 =
" + col3criteria

I apply that to the sortfilter but always get the same results in the
grid, which don't match the above sorting. I can look at "dv" in the
debugger and see its "Items". The row values are matching the criteria
I'm sending in. What could be causing it not to match the query?

Thanks,
Brett

Dec 31 '05 #6
RowFilter is what I'm setting.

Jan 3 '06 #7
I have what I believe to be a similar or the same problem.

I populate a DataSet with the results of an SQL query, and then apply a
DataView to this DataSet. I then iterate through the DataView Rows to create
an XML file.

My problem is, no matter what I do, the way the data is sorted is always the
same. so if I sort on "x, y, z" I have unsorted data in my XML file when it
is saved.

I don't think this has anything to do with RowFilter properties.

Thanks in advance

"Nicholas Paldino [.NET/C# MVP]" wrote:
Brett,

Sorting is a way of ordering results.

What you are doing is trying to filter the results. You want to set the
RowFilter property to this string, and then it should filter your results
out appropriately.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Brett Romero" <ac*****@cygen.com> wrote in message
news:11*********************@g47g2000cwa.googlegro ups.com...
I did that but need to sort this way:

"col1 = " + col1criteria + " and col2 = " + col2criteria + " and col3 =
" + col3criteria

I apply that to the sortfilter but always get the same results in the
grid, which don't match the above sorting. I can look at "dv" in the
debugger and see its "Items". The row values are matching the criteria
I'm sending in. What could be causing it not to match the query?

Thanks,
Brett


Jan 17 '06 #8

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

Similar topics

11
16353
by: Nikki | last post by:
Is it possible to sort a dataset rather than a dataview? I have a web service that returns a dataset which I would like to sort before returning it (this is so the sorting is standardised and so...
2
1588
by: DraguVaso | last post by:
Hi, I have 2 comboboxes, both bound to a different DataView, but thoe DataViews are bound to 1 DataTable in 1 DataSet. Like this: Dim dvwList2 As New DataView dvwList2 =...
4
441
by: Deepa | last post by:
I have a dataset which am trying to sort by 3 specific columns. I am not making any connection to the database to get the dataset. I have the raw dataset already. What i tried doing was to create...
4
10021
by: suzy | last post by:
hello. how can i sort data in a dataset? all the examples i have seen on msdn, etc are sorting a dataview. this works fine, but i want to return the results in xml and the dataview doesn't...
3
5338
by: Björn | last post by:
Hi List I´m generating a DataSet using a simple sql select statement. Now my DataSet has several rows with columns(ID,NAME,CAPTION) Now I want to sort the DataSet for column Caption. I can´t...
2
3685
by: Carl Summers | last post by:
I have a table in an Access database that has no sort applied in Access. When I fill a dataset with data from that table (the entire one dimensional table) my dataset is sorted differently than...
6
23275
by: Ramakrishnan Nagarajan | last post by:
Hi can any one help me in converting a DataView into a DataSet or a DataTable into a DataSet, I tried the following ways dSet= ((DataSet)_gridRegStudDetails.DataSource); dSet =...
3
2735
by: Freeon | last post by:
Hi, I am looking for a way to sort a strong typed dataset. It would seem the most straightforward way is to use a dataview. The only problem is when I use the dataview I seem to loose the strong...
6
16710
by: Nick | last post by:
I have a code that returns data in IList. My webGrid doesn't allow me to sort with IList returned, it say it only suports DataView, DataTable and DataSet, not IEnumerable. I don't know how to...
0
7072
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7319
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7449
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5570
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4998
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3160
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3149
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
730
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
373
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.