473,661 Members | 2,502 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

dataview.rowfil ter using relations

I have a dataset with 3 tables -- 2 Parent tables and 1 table that is a child
table of both the parents. I create a dataview on the child table and set
the rowfilter to a value which filters the child based on values in both
parent tables. When I edit the parent tables the edit is not reflected in
the dataview.count property. How can I force the dataview to refresh
following parent table edits?

For example:

Parent1
Parent1ID Included Selected
1 0 0
2 0 0

Parent2
Parent2ID Included Selected
1 0 0
2 0 0

Child
ParentID1 ParentID2 Value
1 1 foo1
1 2 foo2
2 1 foo3
2 2 foo4

dv = new dataview(child)
dv.rowfilter="P arent(Parent1Ch ild).Included = True AND
Parent(Parent1C hild).Selected = True AND Parent(Parent2C hild).Included = True
AND Parent(Parent2C hild).Selected = True)"
dv.count = 0

I edit Parent1 so that Parent1ID 1 is both in included and selected and
Parent2 so that Parent2ID 2 is both included and selected.
dv.count is still 0. Why?
--
Pat
Oct 16 '08 #1
3 5387
Pat,

A DataView is just an other word for the DefaultView in a DataTable, it
reflects all the data conform the options you have set.
You can create more DataViews for a DataTable then one DataTable, therefore
beside the defaultview there are DataViews, however they return only the
data that is in a datatable, conform that datatabe. Moreover a DataTable is
dynamic every change is direct procesed (there was a bug about that in
version 1.x, so as you are using that, you have to go around that).

Therefore look at your datatable, and for sure not to the dataview.

To see what is not showed, simple start with a dataview and add piece by
piece the elements for your rowfilter.

Cor

"pmcguire" <pm******@discu ssions.microsof t.comwrote in message
news:D0******** *************** ***********@mic rosoft.com...
>I have a dataset with 3 tables -- 2 Parent tables and 1 table that is a
child
table of both the parents. I create a dataview on the child table and set
the rowfilter to a value which filters the child based on values in both
parent tables. When I edit the parent tables the edit is not reflected in
the dataview.count property. How can I force the dataview to refresh
following parent table edits?

For example:

Parent1
Parent1ID Included Selected
1 0 0
2 0 0

Parent2
Parent2ID Included Selected
1 0 0
2 0 0

Child
ParentID1 ParentID2 Value
1 1 foo1
1 2 foo2
2 1 foo3
2 2 foo4

dv = new dataview(child)
dv.rowfilter="P arent(Parent1Ch ild).Included = True AND
Parent(Parent1C hild).Selected = True AND Parent(Parent2C hild).Included =
True
AND Parent(Parent2C hild).Selected = True)"
dv.count = 0

I edit Parent1 so that Parent1ID 1 is both in included and selected and
Parent2 so that Parent2ID 2 is both included and selected.
dv.count is still 0. Why?
--
Pat
Oct 17 '08 #2
I am editing the datarows through a structure like:

dim dr1 as dataset1.Parent 1Row
dim dr2 as dataset1.Parent 2Row

dr1 = dataset1.Parent 1.FindByParent1 ID(1)

dr1.BeginEdit
dr1.Included = 1
dr1.Selected = 1
dr1.EndEdit

dr2 = dataset1.Parent 2FindByParent2I D(2)

dr2.BeginEdit
dr2,Included = 1
dr2.Selected = 1
dr2.EndEdit

And yes, I am using framework 1.1. What is the best workaround?

--
Pat
"Cor Ligthert[MVP]" wrote:
Pat,

A DataView is just an other word for the DefaultView in a DataTable, it
reflects all the data conform the options you have set.
You can create more DataViews for a DataTable then one DataTable, therefore
beside the defaultview there are DataViews, however they return only the
data that is in a datatable, conform that datatabe. Moreover a DataTable is
dynamic every change is direct procesed (there was a bug about that in
version 1.x, so as you are using that, you have to go around that).

Therefore look at your datatable, and for sure not to the dataview.

To see what is not showed, simple start with a dataview and add piece by
piece the elements for your rowfilter.

Cor

"pmcguire" <pm******@discu ssions.microsof t.comwrote in message
news:D0******** *************** ***********@mic rosoft.com...
I have a dataset with 3 tables -- 2 Parent tables and 1 table that is a
child
table of both the parents. I create a dataview on the child table and set
the rowfilter to a value which filters the child based on values in both
parent tables. When I edit the parent tables the edit is not reflected in
the dataview.count property. How can I force the dataview to refresh
following parent table edits?

For example:

Parent1
Parent1ID Included Selected
1 0 0
2 0 0

Parent2
Parent2ID Included Selected
1 0 0
2 0 0

Child
ParentID1 ParentID2 Value
1 1 foo1
1 2 foo2
2 1 foo3
2 2 foo4

dv = new dataview(child)
dv.rowfilter="P arent(Parent1Ch ild).Included = True AND
Parent(Parent1C hild).Selected = True AND Parent(Parent2C hild).Included =
True
AND Parent(Parent2C hild).Selected = True)"
dv.count = 0

I edit Parent1 so that Parent1ID 1 is both in included and selected and
Parent2 so that Parent2ID 2 is both included and selected.
dv.count is still 0. Why?
--
Pat

Oct 20 '08 #3
Pam,

For you start with a work around for the dataview. The EndEdit was as well
(but then completely) a bug in version 1.1, you can simply go around that by
using the EndCurrentEdit which is commenly used for that in 1.1. Before
there was 2.0 I even did not know it was a bug, I simply used forever the
EndCurrentEdit.

I think you better can try that first.

Cor

"pmcguire" <pm******@discu ssions.microsof t.comwrote in message
news:AD******** *************** ***********@mic rosoft.com...
>I am editing the datarows through a structure like:

dim dr1 as dataset1.Parent 1Row
dim dr2 as dataset1.Parent 2Row

dr1 = dataset1.Parent 1.FindByParent1 ID(1)

dr1.BeginEdit
dr1.Included = 1
dr1.Selected = 1
dr1.EndEdit

dr2 = dataset1.Parent 2FindByParent2I D(2)

dr2.BeginEdit
dr2,Included = 1
dr2.Selected = 1
dr2.EndEdit

And yes, I am using framework 1.1. What is the best workaround?

--
Pat
"Cor Ligthert[MVP]" wrote:
>Pat,

A DataView is just an other word for the DefaultView in a DataTable, it
reflects all the data conform the options you have set.
You can create more DataViews for a DataTable then one DataTable,
therefore
beside the defaultview there are DataViews, however they return only the
data that is in a datatable, conform that datatabe. Moreover a DataTable
is
dynamic every change is direct procesed (there was a bug about that in
version 1.x, so as you are using that, you have to go around that).

Therefore look at your datatable, and for sure not to the dataview.

To see what is not showed, simple start with a dataview and add piece by
piece the elements for your rowfilter.

Cor

"pmcguire" <pm******@discu ssions.microsof t.comwrote in message
news:D0******* *************** ************@mi crosoft.com...
>I have a dataset with 3 tables -- 2 Parent tables and 1 table that is a
child
table of both the parents. I create a dataview on the child table and
set
the rowfilter to a value which filters the child based on values in
both
parent tables. When I edit the parent tables the edit is not reflected
in
the dataview.count property. How can I force the dataview to refresh
following parent table edits?

For example:

Parent1
Parent1ID Included Selected
1 0 0
2 0 0

Parent2
Parent2ID Included Selected
1 0 0
2 0 0

Child
ParentID1 ParentID2 Value
1 1 foo1
1 2 foo2
2 1 foo3
2 2 foo4

dv = new dataview(child)
dv.rowfilter="P arent(Parent1Ch ild).Included = True AND
Parent(Parent1C hild).Selected = True AND Parent(Parent2C hild).Included
=
True
AND Parent(Parent2C hild).Selected = True)"
dv.count = 0

I edit Parent1 so that Parent1ID 1 is both in included and selected and
Parent2 so that Parent2ID 2 is both included and selected.
dv.count is still 0. Why?
--
Pat

Oct 20 '08 #4

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

Similar topics

7
9139
by: Joe | last post by:
Not sure what group this question is better suited for so I sent it to both. I have a DataTable which contains 1545 rows. I have a method that returns a DataTable of distinct rows based on one column. This table ends up with 386 rows. I need to loop through the smaller table and filter a DataView based on each row from this table. This loops takes ~5 secs. Is there anyway to improve this?
2
2298
by: Ryan Moore | last post by:
I have a dataset (called adset) which has a column called "Large" which is either an integer 0 or 1. I am creating 2 dataviews, one which should display the 1's and one which should display the 0's using the following code: DataView largeview = new DataView(); largeview.RowFilter = "Large=1"; largeview.Table = adSet1.Tables; DataView smallview = new DataView();
8
3889
by: Dave Hagerich | last post by:
I'm using a DataGrid with a DataSet and I'm trying to filter the data being displayed, using the following code as a test: DataView theView = new DataView(theDataSet.Tables); theView.RowFilter = "'Record ID' = '0'"; theView.RowStateFilter = DataViewRowState.ModifiedCurrent; Debug.WriteLine(string.Format("RowFilter = {0}", theView.RowFilter)); RecordDataGrid.DataSource = theView; RecordDataGrid.DataBind();
9
5886
by: Marty McFly | last post by:
Greetings, I'm trying to let my users dynamically filter records from a table that relate to other tables. RELATIONSHIPS: . = . . = . There is a Many-to-Many relationship between CustomersTable and
7
5615
by: Rich | last post by:
Hello, I am pulling master data from one master table and detail data from two detail tables. The rows from the master data are displayed in textboxes on my form which are bound to the data with databinding. The data from the 2 detail tables are displayed in 2 datagridviews. I filter each datagridview with a Dataview object using the dataview.Rowfilter property. This is sort of working except that I am getting an except on one of my...
0
1515
by: neeraj | last post by:
Hi, all Could anny one give me help how can I use like operator with these data types "integer , datetime or boolean" in DataView.RowFilter Actually when I try to get the data from dataview using rowfilter with like operator Its working fine when data type of searching column is "string" . But if data type is "integer , datetime or boolean" its throws
2
18925
by: neeraj | last post by:
Hi, all Could anny one give me help how can I use like operator with these data types "integer , datetime or boolean" in DataView.RowFilter Actually when I try to get the data from dataview using rowfilter with like operator Its working fine when data type of searching column is "string" . But if data type is "integer , datetime or boolean" its throws
1
2708
by: AlexW | last post by:
Hi I am in the process of developing an inventory application in visual basic. I keep coming up against a problem with using the dataview.rowfilter property. Basically what happens is this: -a global dataview is created -The user enters new part information into a form. -A function is called to check to see if the part is a new part (so that two identical part numbers are not added to the database. -The check is done by setting the...
5
11831
by: AlexW | last post by:
Hi I am in the process of developing an inventory application in visual basic. I keep coming up against a problem with using the dataview.rowfilter property. Basically what happens is this: -a global dataview is created -The user enters new part information into a form. -A function is called to check to see if the part is a new part (so that two identical part numbers are not added to the database. -The check is done by setting the...
0
8432
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8758
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
8545
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
8633
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...
1
6185
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5653
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
4179
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...
1
2762
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1743
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.