System.Data.Common.DataAdapter
namespace System.Data.Common
{
public class DataAdapter : Component, IDataAdapter
{
public bool AcceptChangesDuringFill { get; set; }
public bool AcceptChangesDuringUpdate { get; set; }
public bool ContinueUpdateOnError { get; set; }
public LoadOption FillLoadOption { get; set; }
public MissingMappingAction MissingMappingAction { get; set; }
public MissingSchemaAction MissingSchemaAction { get; set; }
public virtual bool ReturnProviderSpecificTypes { get; set; }
public DataTableMappingCollection TableMappings { get; }
public event FillErrorEventHandler FillError;
protected DataAdapter();
protected DataAdapter(DataAdapter from);
protected virtual DataAdapter CloneInternals();
protected virtual DataTableMappingCollection CreateTableMappings();
public virtual int Fill(DataSet dataSet);
protected virtual int Fill(DataSet dataSet, string srcTable, IDataReader dataReader, int startRecord, int maxRecords);
protected virtual int Fill(DataTable dataTable, IDataReader dataReader);
protected virtual int Fill(DataTable[] dataTables, IDataReader dataReader, int startRecord, int maxRecords);
public virtual DataTable[] FillSchema(DataSet dataSet, SchemaType schemaType);
protected virtual DataTable[] FillSchema(DataSet dataSet, SchemaType schemaType, string srcTable, IDataReader dataReader);
protected virtual DataTable FillSchema(DataTable dataTable, SchemaType schemaType, IDataReader dataReader);
public virtual IDataParameter[] GetFillParameters();
protected bool HasTableMappings();
protected virtual void OnFillError(FillErrorEventArgs value);
public void ResetFillLoadOption();
public virtual bool ShouldSerializeAcceptChangesDuringFill();
public virtual bool ShouldSerializeFillLoadOption();
protected virtual bool ShouldSerializeTableMappings();
public virtual int Update(DataSet dataSet);
}
}