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 連接來嘗試開啟相關聯的資料庫。