T
TJ
Hi.
I have a dataset that contains 3 tables.
Records have been added into each tables.
For example,
A table - 3 records added (RowState - Added)
B table - 2 records added (RowState - Added)
C table - 4 records added (RowState - Added)
I would like to add these records back to the database by using
DataAdapter..::.Update method..
However, it seems that it only supports one table at a time.
Am I correct?
If this only can be done by one one Update method calling,
how am I supposed to create a InsertCommand query?
Like "Insert into A(...); Insert into B(...);...Insert into C(..);"???
Or should I call the Update three times for each table?
Thanks,
I have a dataset that contains 3 tables.
Records have been added into each tables.
For example,
A table - 3 records added (RowState - Added)
B table - 2 records added (RowState - Added)
C table - 4 records added (RowState - Added)
I would like to add these records back to the database by using
DataAdapter..::.Update method..
However, it seems that it only supports one table at a time.
Am I correct?
If this only can be done by one one Update method calling,
how am I supposed to create a InsertCommand query?
Like "Insert into A(...); Insert into B(...);...Insert into C(..);"???
Or should I call the Update three times for each table?
Thanks,