C
cr113
Suppose you have the following 2 database tables:
Table1 - primary key = Field1
Field1 Field2
a 1
b 2
c 2
Table2 - primary key = Field2
Field2 Field3
1 Y
2 Z
I can display this in a datagrid:
Field1 Field2 Field3
a 1 Y
b 2 Z
c 2 Z
How do I update the underlying database tables? It's easy with one
table but I can't find any documentation on how to do it with multiple
tables.
Table1 - primary key = Field1
Field1 Field2
a 1
b 2
c 2
Table2 - primary key = Field2
Field2 Field3
1 Y
2 Z
I can display this in a datagrid:
Field1 Field2 Field3
a 1 Y
b 2 Z
c 2 Z
How do I update the underlying database tables? It's easy with one
table but I can't find any documentation on how to do it with multiple
tables.