DbDataAdapter 생성자

정의

DataAdapter 클래스의 새 인스턴스를 초기화합니다.

오버로드

DbDataAdapter()

DataAdapter 클래스의 새 인스턴스를 초기화합니다.

DbDataAdapter(DbDataAdapter)

동일한 형식의 기존 개체에서 클래스의 DataAdapter 새 instance 초기화합니다.

DbDataAdapter()

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

DataAdapter 클래스의 새 인스턴스를 초기화합니다.

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

설명

DbDataAdapterinstance 만들 때 다음 읽기/쓰기 속성은 다음 초기 값으로 설정됩니다.

속성 초기 값
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 새 instance 초기화합니다.

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

DataAdapter를 만드는 데 사용되는 DataAdapter 개체입니다.

설명

생성자의 이 오버로드는 DbDataAdapter 클론 구현에서 사용할 유사한 생성자를 구현할 때 .NET Framework 데이터 공급자가 사용하도록 설계되었습니다.

추가 정보

적용 대상