You may update data directly like getting it using UPDATE/INSERT SQL statements
and SqlConnection, SqlCommand classes. Or you can manipulate fetched data inside
your DataAdapter using its capabilities:
- SelectCommand
- UpdateCommand
- InsertCommand
- DeleteCommand
For update you could also use DataSet.GetChanges()... With a combination of this
one and DataAdapter's Update you can also update data...