disconnected dataset updation problem

  • Thread starter Thread starter R.Giridharan
  • Start date Start date
R

R.Giridharan

hi,
I would like to update the data set data into the database
after a client modification.
Is there nay way i can do that without supplying the
command object again into the adapter
OR
Is there nay way i can use the same Query which i gave
while creation of the adapter for getting the data first
time before sending it to the client ?

Basically i would like to create a generic Data Access
Layer which would do the data persistance with minmimum
effort to the dal consumers.

Regards
R.Giridharan
 
It's not clear what you are trying to do.

You can certainly create DAL architectures. Numerous books and articles have
touched on this.

If you can dedicate a data adapter to each table, then you can assign them
each their commands and not need to do that again. I think that's rarely
needed in a n-tier architecture, so am having trouble answering because I am
not envisioning where your issue/problem lies.
 
Back
Top