e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
37 lines
964 B
C#
37 lines
964 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="IDataAdapter.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
// <owner current="true" primary="true">markash</owner>
|
|
// <owner current="true" primary="false">laled</owner>
|
|
//------------------------------------------------------------------------------
|
|
|
|
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);
|
|
}
|
|
}
|