DataContext.DatabaseExists 方法

定义

确定是否可以打开关联数据库。

public:
 bool DatabaseExists();
public bool DatabaseExists ();
member this.DatabaseExists : unit -> bool
Public Function DatabaseExists () As Boolean

返回

如果可以打开指定的数据库,则为 true;否则为 false

示例

以下示例使用此方法来确定数据库是否已存在。

if (!db.DatabaseExists())
    db.CreateDatabase();
// …
db.DeleteDatabase();
If Not db.DatabaseExists Then
    db.CreateDatabase()
End If
' ...
db.DeleteDatabase()

注解

此方法使用 属性中的 Connection 连接来尝试打开关联的数据库。

适用于