modify database through datagrid?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can I modify database tables by directly typing into the datagrids? Is that
possible (just like MS Access forms)?
 
Hi,

Yes. Keep in mind that the data isnt saved to the database until
you call the dataadapters update method.

Ken
 
Can I modify database tables by directly typing into the datagrids? Is
that
possible (just like MS Access forms)?

No, you have to create the code to verify the data, to check the concurrency
and and to save (delete, update, create) it into the database yourself.

Often this is done using the possibilities from the OleDB or SQLdataadapter
as Ken wrote.

I hope this helps?

Cor
 

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