DataContext.DatabaseExists 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定是否可以打开关联数据库。
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 连接来尝试打开关联的数据库。