OdbcFactory.Instance 欄位
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得 OdbcFactory 的執行個體,可以用來擷取強型別的資料物件。
public: static initonly System::Data::Odbc::OdbcFactory ^ Instance;
public static readonly System.Data.Odbc.OdbcFactory Instance;
staticval mutable Instance : System.Data.Odbc.OdbcFactory
Public Shared ReadOnly Instance As OdbcFactory
欄位值
範例
下列代碼段會 Instance 使用 字段來擷取 OdbcFactory 實例,然後傳回強型別 DbCommand 實例:
Dim newFactory As OdbcFactory = OdbcFactory.Instance
Dim cmd As DbCommand = newFactory.CreateCommand()
OdbcFactory newFactory = OdbcFactory.Instance;
DbCommand cmd = newFactory.CreateCommand();