Is dataview updatable at server side

  • Thread starter Thread starter Omer
  • Start date Start date
O

Omer

Hi,
Can you please tell me whether the dataview is updateable at the server side
and if yes then kindly write a simple code for an example.
Thanks & regards,
 
Omer:

What do you mean is it updateable server side? The datatable that the
dataview is based on can be passed to a DataAdapter, and as long as that
data adapter has a valid command (and is correctly configured) for each CRUD
operation corresponding to the view's rowstate's, you can successfully
update the records.

However DataView's, DataTables and DataSets are all 'client' side objects
and don't need a persistent connection (or a database for that matter) to
function.

If you could specify what you're trying to accomplish in a little more
detail, I could probably be of more help.

Cheers,

Bill
 
Back
Top