OracleConnection.State プロパティ

定義

現在の接続の状態を取得します。

public:
 property System::Data::ConnectionState State { System::Data::ConnectionState get(); };
public:
 virtual property System::Data::ConnectionState State { System::Data::ConnectionState get(); };
[System.ComponentModel.Browsable(false)]
public System.Data.ConnectionState State { get; }
[System.ComponentModel.Browsable(false)]
public override System.Data.ConnectionState State { get; }
[<System.ComponentModel.Browsable(false)>]
member this.State : System.Data.ConnectionState
Public ReadOnly Property State As ConnectionState
Public Overrides ReadOnly Property State As ConnectionState

プロパティ値

ConnectionState 値のビットごとの組み合わせ。 既定値は、Closed です。

実装

属性

次の例では、派生クラス のインスタンスを作成し、 OracleConnectionその を ConnectionString設定し、その を State表示します。

public void createOracleConnection()
{
    using (OracleConnection connection = new OracleConnection())
    {
        connection.ConnectionString = "Data Source=Oracle8i;Integrated Security=yes";
        connection.Open();
        Console.WriteLine("Connection State: " + connection.State);
    }
}
Public Sub createOracleConnection()
    Using connection As New OracleConnection()
        connection.ConnectionString = _
           "Data Source=Oracle8i;Integrated Security=yes"
        connection.Open()
        Console.WriteLine("Connection State: " & connection.State)
    End Using
End Sub

注釈

許可される状態の変更は次のとおりです。

  • から Closed までOpen。 オブジェクトの メソッドをOpenOracleConnection使用します。

  • から Open までClosed。 オブジェクトの メソッドをCloseOracleConnection使用します。

適用対象