IDataAdapter.cs 964 B

123456789101112131415161718192021222324252627282930313233343536
  1. //------------------------------------------------------------------------------
  2. // <copyright file="IDataAdapter.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">[....]</owner>
  6. // <owner current="true" primary="false">[....]</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data {
  9. using System;
  10. public interface IDataAdapter {
  11. MissingMappingAction MissingMappingAction {
  12. get;
  13. set;
  14. }
  15. MissingSchemaAction MissingSchemaAction {
  16. get;
  17. set;
  18. }
  19. ITableMappingCollection TableMappings {
  20. get;
  21. }
  22. DataTable[] FillSchema(DataSet dataSet, SchemaType schemaType);
  23. int Fill(DataSet dataSet);
  24. IDataParameter[] GetFillParameters();
  25. int Update(DataSet dataSet);
  26. }
  27. }