SqlDataAdapter.cs 541 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Data.SqlClient.SqlDataAdapter.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // (C) Ximian, Inc
  8. //
  9. namespace System.Data.SqlClient
  10. {
  11. /// <summary>
  12. /// Represents a set of command-related properties that are used to fill the DataSet and update a data source, all this from a SQL database.
  13. /// </summary>
  14. public class SqlDataAdapter : IDbDataAdapter
  15. {
  16. SqlCommand DeleteCommand{get; set;}
  17. SqlCommand InsertCommand{get; set;}
  18. SqlCommand SelectCommand{get; set;}
  19. SqlCommand UpdateCommand{get; set;}
  20. }
  21. }