IDbDataAdapter.cs 581 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Data.IDbDataAdapter.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Represents a set of command-related properties that are used to fill the DataSet and update a data source, and is implemented by .NET data providers that access relational databases.
  13. /// </summary>
  14. public interface IDbDataAdapter : IDataAdapter
  15. {
  16. IDbCommand DeleteCommand{get; set;}
  17. IDbCommand InsertCommand{get; set;}
  18. IDbCommand SelectCommand{get; set;}
  19. IDbCommand UpdateCommand{get; set;}
  20. }
  21. }