DbDataAdapter 构造函数

定义

初始化 DataAdapter 类的新实例。

重载

DbDataAdapter()

初始化 DataAdapter 类的新实例。

DbDataAdapter(DbDataAdapter)

从同一类型的现有对象初始化 类的新实例 DataAdapter

DbDataAdapter()

Source:
DbDataAdapter.cs
Source:
DbDataAdapter.cs
Source:
DbDataAdapter.cs

初始化 DataAdapter 类的新实例。

protected:
 DbDataAdapter();
protected DbDataAdapter ();
Protected Sub New ()

注解

创建 实例 DbDataAdapter时,以下读/写属性将设置为以下初始值。

属性 初始值
SelectCommand 一个新的 IDbCommand
InsertCommand 一个新的 IDbCommand
DeleteCommand 一个新的 IDbCommand
UpdateCommand 一个新的 IDbCommand
MissingMappingAction MissingMappingAction.Passthrough
MissingSchemaAction MissingSchemaAction.Add

可以通过对 属性的单独调用来更改其中任何属性的值。

另请参阅

适用于

DbDataAdapter(DbDataAdapter)

Source:
DbDataAdapter.cs
Source:
DbDataAdapter.cs
Source:
DbDataAdapter.cs

从同一类型的现有对象初始化 类的新实例 DataAdapter

protected:
 DbDataAdapter(System::Data::Common::DbDataAdapter ^ adapter);
protected DbDataAdapter (System.Data.Common.DbDataAdapter adapter);
new System.Data.Common.DbDataAdapter : System.Data.Common.DbDataAdapter -> System.Data.Common.DbDataAdapter
Protected Sub New (adapter As DbDataAdapter)

参数

adapter
DbDataAdapter

用于创建新 DataAdapterDataAdapter 对象。

注解

此构造函数重DbDataAdapter载旨在供.NET Framework数据提供程序在实现克隆实现中使用的类似构造函数时使用。

另请参阅

适用于