Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DataGridView + Dataset From Mutiple Tables

Status
Not open for further replies.

johnrowse

Technical User
Aug 7, 2013
14
0
0
GB
Hi

I can create a DataGridView bound to a datatable, which queries a single table, or even multiple tables via a dataset (xsd). I want to use a query to return data from a foreign table, where a related price is held. I need to display this [readonly] price, so the user can make the right changes to the 'main' data, based on the price it references. However, I cannot get updates to work, as the XSD will not create an update routine for the datatable as a whole, as it queries data outside of the table. I can manually create update commands, but they only except single parameters on a per row basis, rather than taking a datatable, to update changes. Is it possible to achieve what I want?...

Sub Load
adapter.fill(QueriedDataTable)
dgvMain.datasource = QueriedDataTable
End Sub

Sub Update
adapter.update(QueriedDataTable)
End Sub

Thanks in advance

John
 
Thanks MajP

But the 'price' is not calculated, so can I use an expression (can I use a select statement within an expression)? The main table is essentially an 'order table' and I need to display 'price' within the 'orders', so that the user can reallocate the order, if necessary, on the basis of the price.

Thanks again

John
 
it is calculated in a sense. The calculation says to go to the related data table and grab the value. You need to have a datarelation which you can build in the designer or likely it already exists if your datasource had one defined.

So you have datatableA and datatableB and there is a data relation dataRelationA_B
Assume B is the datatable with a foreign key to table A.
Then in B you can add a calculated field like
Parent(dataRelationA_B).FieldInAName
You can replace Parent with child where appropriate

You can do aggregates. If A is the parent table (primary key)
you can add
Avg(Child.Price)
The above would calculate the average of all child records. If there is only one datarelation for the table you can drop the name of the datarelation as shown above.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top