IDbConnection.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:
property System::String ^ Database { System::String ^ get(); };
public string Database { get; }
member this.Database : string
Public ReadOnly Property Database As String
Property Value
The name of the current database or the name of the database to be used once a connection is open. The default value is an empty string.
Remarks
The Database
property can be dynamically updated by using the ChangeDatabase method or by passing an SQL statement using one of the Execute methods. (Initially the database is set by means of the connection string.) If you change the current database using an SQL statement or the ChangeDatabase
method, an informational message is sent and then the property is updated.