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

適用於