OdbcFactory.CreateDataAdapter Methode

Definition

Gibt eine stark typisierte DbDataAdapter-Instanz zurück.

public:
 override System::Data::Common::DbDataAdapter ^ CreateDataAdapter();
public override System.Data.Common.DbDataAdapter CreateDataAdapter ();
override this.CreateDataAdapter : unit -> System.Data.Common.DbDataAdapter
Public Overrides Function CreateDataAdapter () As DbDataAdapter

Gibt zurück

Eine neue stark typisierte DbDataAdapter-Instanz.

Beispiele

Das folgende Codefragment gibt eine stark typisierte DbDataAdapter instance zurück:

Dim newFactory As OdbcFactory = OdbcFactory.Instance
Dim cmd As DbDataAdapter = newFactory.CreateDataAdapter()
OdbcFactory newFactory = OdbcFactory.Instance;
DbDataAdapter cmd = newFactory.CreateDataAdapter();

Gilt für: