473,796 Members | 2,751 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Filtering a Dataset

I am using the following statement to filter a dataset.

ds.Tables(0).De faultView.RowFi lter = "ID='" & currentpos & " '
It seems to run fine. My question is since I have a filter set, why is the
following loop still goes through every record.

How can I achieve a real filter on a dataset? I dont want to create a
dataview.
For i = 0 To ds.Tables(0).Ro ws.Count - 1
MsgBox(ds.Table s(0).Rows(i)("c asenumber"))
Next
Many thanks
Nov 21 '05 #1
3 8894
Shahriar,
You set the filter on the DataView object that DefaultView returns. This
DataView does not in any way effect the rows that are in the DataTable.
DataTable.Rows always returns all the rows in the DataTable.
I dont want to create a dataview. You just did, with this statement.
ds.Tables(0).De faultView.RowFi lter = "ID='" & currentpos & " '
How can I achieve a real filter on a dataset? What I normally do is use DataTable.Selec t when a DataView is not
"appropriat e" but I want to filter the rows of a table.

Something like:

For Each row As DataRow in ds.Tables(0).Se lect("ID='" & currentpos &
"'")
MessageBox.Show (row("casenumbe r")
Next

Hope this helps
Jay

"Shahriar" <He***********@ hotmail.com> wrote in message
news:FK1bd.2641 $y71.624@trnddc 02...I am using the following statement to filter a dataset.

ds.Tables(0).De faultView.RowFi lter = "ID='" & currentpos & " '
It seems to run fine. My question is since I have a filter set, why is
the following loop still goes through every record.

How can I achieve a real filter on a dataset? I dont want to create a
dataview.
For i = 0 To ds.Tables(0).Ro ws.Count - 1
MsgBox(ds.Table s(0).Rows(i)("c asenumber"))
Next
Many thanks

Nov 21 '05 #2
Jay.
Thanks for the reply. Here is my problem .
I have a dataset in a grid type layout. The user clicks on a record. There I
launch a new form displaying details on the data.
In the new form i have a text box that I want am binding to the dataset.
The issue is it has no way of knowing which row # the dataset is. That is
why I wanted to filter on the dataset itself.

tempTable = ds.Tables(0)

TextBox1.DataBi ndings.Add("tex t", tempTable, "casenumber ") ' always points
to the first record.

Where in the above example can I specify the row number of the dataset for
the binding.

If I dont do databinding I would have something like this which works fine,
but I want to avoid reassining the value back.

TextBox1.Text = tempTable.Rows( currentpos)("ca senumber")

Thanks

Shahriar

"Jay B. Harlow [MVP - Outlook]" <Ja************ @msn.com> wrote in message
news:u$******** ******@TK2MSFTN GP09.phx.gbl...
Shahriar,
You set the filter on the DataView object that DefaultView returns. This
DataView does not in any way effect the rows that are in the DataTable.
DataTable.Rows always returns all the rows in the DataTable.
I dont want to create a dataview.

You just did, with this statement.
ds.Tables(0).De faultView.RowFi lter = "ID='" & currentpos & " '


How can I achieve a real filter on a dataset?

What I normally do is use DataTable.Selec t when a DataView is not
"appropriat e" but I want to filter the rows of a table.

Something like:

For Each row As DataRow in ds.Tables(0).Se lect("ID='" & currentpos &
"'")
MessageBox.Show (row("casenumbe r")
Next

Hope this helps
Jay

"Shahriar" <He***********@ hotmail.com> wrote in message
news:FK1bd.2641 $y71.624@trnddc 02...
I am using the following statement to filter a dataset.

ds.Tables(0).De faultView.RowFi lter = "ID='" & currentpos & " '
It seems to run fine. My question is since I have a filter set, why is
the following loop still goes through every record.

How can I achieve a real filter on a dataset? I dont want to create a
dataview.
For i = 0 To ds.Tables(0).Ro ws.Count - 1
MsgBox(ds.Table s(0).Rows(i)("c asenumber"))
Next
Many thanks


Nov 21 '05 #3
Shahriar,

For that is databinding and the currencymanager something as
\\\
dim cma As CurrencyManager
textbox1.DataBi ndings.Clear()
cma = DirectCast(Bind ingContext(dv), CurrencyManager )
textbox1.DataBi ndings.Add(New Binding("Text", dv, "MyfieldNam e"))
///

I hope this gives a starting idea

Do not forget when you want to a update first to do the
\\
BindingContext( dv).EndCurrentE dit()
///
I hope this helps a little bit?

Cor
Nov 21 '05 #4

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

Similar topics

3
3157
by: Alex Ayzin | last post by:
Hi, I have a problem that might be easy to solve(possibly, I've just overlooked an easy solution). Here we go: I have a dataset with 2 datatables in it. Now, I need to do the following: if ds.table(0).rows(0).item("col1") = ds.table(1).rows(0).item("col2") then txtResult.text = ds.table(1).rows(0).item("col3")
3
2198
by: serge calderara | last post by:
Dear all, I have a csv file data which has been read and populate on a dataset object. then I need to bind part of the content of the dataset to a treeview control. I have read that XML format is particular usefull to be bind to a treeview as it handle nodes. So I have try to save my dataset content into a xml file. The content of that file is as follow : - <NewDataSet> - <REC_INFO>
0
3646
by: Patrick | last post by:
I'm working on a contact management application, and need a hand with one aspect... Here's what I want to create: ------------------------------------ A form split into two parts. There is a datagrid on the left side that lists names and perhaps a couple of other key fields. The user can click on a record in the datagrid, which should automatically pull up details on that record in the various text boxes and other controls on the right...
0
1186
by: Jenny C. | last post by:
Hi I am trying to do a SUM on a DataSet column with the following code // ds is the DataSet that I need to calculate data fro String filter2 = "EmpNo = " + this.EmpNo + " AND WEEK_ENDING >= '" + MyDateTime.Date.ToShortDateString() + "'" float totalGross = Convert.ToSingle(this.ds.Tables.Compute("SUM(GROSS)", filter2)) float totalEarn = Convert.ToSingle(this.ds.Tables.Compute("SUM(Earns)", filter2)) Here the problem: it doesn't...
2
3995
by: Marco Ippolito | last post by:
I have an offline DataSet: id (PK, sorted ASC), firstname, enabled 1, Aaron, true 2, Bill, false 3, Charlie, true .... 10001, Mike, false 10002, Nathan, false
0
1593
by: ber.janssens | last post by:
Hi, I am trying the new ObjectDataSource from ASP.NET 2.0. I connected a Gridview with ObjectDataSource which is connected to a webservice which returns a DataSet. In the Webmethod I return only the rows for the current page because paging is enabled, I use the parameters maximumRows and startRowIndex for doing this. I also got sorting to work using the parameter sortExpression. The method of the webservice looks like this:
7
14821
by: | last post by:
Hello, Does anyone have an idea on how I can filter the data in the gridview control that was returned by an sql query? I have a gridview that works fine when I populate it with data. Now I want to look at that data and filter it based on what is in it. I know that this could have been done with data sets and data views in asp.net 1.1 but how is this done now in asp.net 2.0?
5
1909
by: LDD | last post by:
Hi Folks I'm trying to determine a way to handle paging, filtering and sorting in a datagrid. If I choose to filter and sort, I'd like to return a subset. If that resultset has more records then the number of rows I'd like to display, I'd like to be able to load pages into the grid. My question is, do I need to continually hit the db to get the next page of records, or is there another method of doing with the dataset. i.e. load the
2
3712
by: Jason Huang | last post by:
Hi, I use the ReadXML method in my C# Windows Form project. Here is some of my C# code: xmlDS.ReadXml(curDir + "\\Dept.xml") ; There're 20 rows and 5 columns in the Dept.xml. But now I just want some of the data in the Dept.xml, e.g., DeptLevel >1 AND Status=0. How do I filter the XML or xmlDS so that the output is what I need?
3
1866
by: Shawn Ramirez | last post by:
As with most web applications speed is a huge deal to me in my applications. My customers don't really care if my app is a true 3 tier application or not, they just want it to be faster then it was yesterday. Because of this I try to limit my calls to the database by using a loading lookup data for a customer and then filtering down to what I need. (I have alot of recursive logic because of alot of tree controls). Here is my question. ...
0
9535
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10467
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10244
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10201
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10021
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6802
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5454
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5582
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2931
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.