G Guest Aug 25, 2004 #1 Can I modify database tables by directly typing into the datagrids? Is that possible (just like MS Access forms)?
Can I modify database tables by directly typing into the datagrids? Is that possible (just like MS Access forms)?
K Ken Tucker [MVP] Aug 26, 2004 #2 Hi, Yes. Keep in mind that the data isnt saved to the database until you call the dataadapters update method. Ken
Hi, Yes. Keep in mind that the data isnt saved to the database until you call the dataadapters update method. Ken
C Cor Ligthert Aug 26, 2004 #3 Can I modify database tables by directly typing into the datagrids? Is that possible (just like MS Access forms)? Click to expand... 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
Can I modify database tables by directly typing into the datagrids? Is that possible (just like MS Access forms)? Click to expand... 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