SqlCeConnection.Database Property
Gets the name of the current database or the database to be used when a connection is open.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Syntax
'Declaration
Public Overrides ReadOnly Property Database As String
Get
'Usage
Dim instance As SqlCeConnection
Dim value As String
value = instance.Database
public override string Database { get; }
public:
virtual property String^ Database {
String^ get () override;
}
abstract Database : string
override Database : string
override function get Database () : String
Property Value
Type: System.String
The name of the current database or the name of the database to be used when a connection is open. The default value is an empty string. For SQL Server Compact, the value for this property should be the full path of the database file; for example, "\myApp\myDB.sdf".
Implements
Remarks
The Database property updates dynamically. If you change the current database using the ChangeDatabase method, an informational message is sent and the property is updated automatically.