| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //
- // System.Data.IDataAdapter.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Allows an object to implement a DataAdapter, and represents a set of methods and mapping action-related properties used to fill and refresh a DataSet and update a data source.
- /// </summary>
- public interface IDataAdapter
- {
- int Fill(DataSet dataSet)
- {
- }
- DataTable[] FillSchema(DataSet dataSet, SchemaType schemaType)
- {
- }
- IDataParameter[] GetFillParameters();
- int Update(DataSet dataSet)
- {
- }
-
- MissingMappingAction MissingMappingAction
- {
- get
- {
- }
- set
- {
- }
- }
- MissingSchemaAction MissingSchemaAction
- {
- get
- {
- }
- set
- {
- }
- }
- ITableMappingCollection TableMappings
- {
- get
- {
- }
- set
- {
- }
- }
- }
- }
|