SqlClientFactory.CreateConnection Yöntem

Tanım

Kesin olarak yazılan DbConnection bir örnek döndürür.

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

Döndürülenler

Türü kesin olarak belirlenmiş yeni bir DbConnectionörneği.

Örnekler

Aşağıdaki kod parçası kesin olarak belirlenmiş DbConnection bir örnek döndürür:

Dim newFactory As SqlClientFactory = SqlClientFactory.Instance
Dim cmd As DbConnection = newFactory.CreateConnection()
SqlClientFactory newFactory = SqlClientFactory.Instance;
DbConnection cmd = newFactory.CreateConnection();

Şunlara uygulanır

Ayrıca bkz.