OracleConnection.Database Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the name of the current database or the database to be used after a connection is opened.
public:
virtual property System::String ^ Database { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public override string Database { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Database : string
Public Overrides ReadOnly Property Database As String
Property Value
The name of the current database or the name of the database to be used after a connection is opened. The default value is an empty string.
- Attributes
Remarks
The Database property updates dynamically. If you change the current database using a SQL statement or the ChangeDatabase method, an informational message is sent and the property is updated automatically.
Note
Unlike the Connection
object in the other .NET Framework data providers (SQL Server, OLE DB, and ODBC), OracleConnection does not support a ConnectionTimeout property. Setting a connection time-out either with a property or in the connection string has no effect, and the value returned is always zero. OracleConnection also does not support a Database property or a ChangeDatabase method.