data adapter commands

  • Thread starter Thread starter Karl
  • Start date Start date
K

Karl

Hi,

I'm working with a dataSet with 6 tables in it and when I
come to save it back to source I need a data adapter to
take care of it.

Ive got all my insert, update, delete commands for each of
my tables sorted using stored proc's but my problem is:

how do I give the one adapter all these commands? Do I
need 6 different adapters to take care of my 6 tables
within my dataset?

Any help is much appreciated.
 
Hi Karl.

Karl said:
Hi,

I'm working with a dataSet with 6 tables in it and when I
come to save it back to source I need a data adapter to
take care of it.

Ive got all my insert, update, delete commands for each of
my tables sorted using stored proc's but my problem is:

how do I give the one adapter all these commands? Do I
need 6 different adapters to take care of my 6 tables
within my dataset?

Exactly. One adapter per table.
 
Back
Top