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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top