SqlDataAdapter

  • Thread starter Thread starter Dragon
  • Start date Start date
D

Dragon

If I drag and drop Table from Server Explorer into the WebForm, it will
create an DataAdapter
including all the Insert,Update, Delete, Select Statement
but After the Insert and Update Statement, there is a Select statment.
What is the purpose of that Select statement ?
What happen if I remove that ?
 
The select statement is used to refresh the dataset and tell the data
adapter what rows to fetch from the underlying table. If you delete it,
there will be no rows returned.

Regards
Scott Blood
C# Developer
 
Back
Top