//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // markash // laled //------------------------------------------------------------------------------ namespace System.Data { using System; public interface IDataAdapter { MissingMappingAction MissingMappingAction { get; set; } MissingSchemaAction MissingSchemaAction { get; set; } ITableMappingCollection TableMappings { get; } DataTable[] FillSchema(DataSet dataSet, SchemaType schemaType); int Fill(DataSet dataSet); IDataParameter[] GetFillParameters(); int Update(DataSet dataSet); } }