共用方式為


SqlServices.Uninstall 方法

定義

從 SQL Server 資料庫移除選取 ASP.NET 功能的元件。

多載

Uninstall(String, String, SqlFeatures)

從 SQL Server 資料庫移除選取 ASP.NET 功能的元件。

Uninstall(String, SqlFeatures, String)

從 SQL Server 資料庫移除選取 ASP.NET 功能的元件。

Uninstall(String, String, String, String, SqlFeatures)

從 SQL Server 資料庫移除選取 ASP.NET 功能的元件。

Uninstall(String, String, SqlFeatures)

從 SQL Server 資料庫移除選取 ASP.NET 功能的元件。

public:
 static void Uninstall(System::String ^ server, System::String ^ database, System::Web::Management::SqlFeatures features);
public static void Uninstall (string server, string database, System.Web.Management.SqlFeatures features);
static member Uninstall : string * string * System.Web.Management.SqlFeatures -> unit
Public Shared Sub Uninstall (server As String, database As String, features As SqlFeatures)

參數

server
String

要移除功能的 SQL Server 執行個體。

database
String

要移除功能的資料庫。

features
SqlFeatures

SqlFeatures 值的位元組合,指定要移除的功能。

例外狀況

無法連接至指定的資料庫伺服器。

features 值包含一或多個無效旗標。

處理作業所需要的 SQL 陳述式、嘗試從不存在的資料庫移除,或者指定資料庫中一或多個功能的資料表包含資料時,便會發生例外狀況。

範例

下列程式碼範例示範如何使用 Uninstall(String, String, SqlFeatures) 類別的 SqlServices 方法。

// Remove all features.
SqlServices.Uninstall(server, database,
    SqlFeatures.All);
' Remove all features.
SqlServices.Uninstall(server, database, _
    SqlFeatures.All)

備註

如果 databasenull 或未提供, SqlServices 則會使用預設資料庫 。 aspnetdb 如果 servernull 或未提供, SqlServices 則會使用預設的 SQL Server 實例。

注意

與資料庫伺服器的連線是使用受信任的連接所建立。

另請參閱

適用於

Uninstall(String, SqlFeatures, String)

從 SQL Server 資料庫移除選取 ASP.NET 功能的元件。

public:
 static void Uninstall(System::String ^ database, System::Web::Management::SqlFeatures features, System::String ^ connectionString);
public static void Uninstall (string database, System.Web.Management.SqlFeatures features, string connectionString);
static member Uninstall : string * System.Web.Management.SqlFeatures * string -> unit
Public Shared Sub Uninstall (database As String, features As SqlFeatures, connectionString As String)

參數

database
String

要移除功能的資料庫。

features
SqlFeatures

SqlFeatures 值的位元組合,指定要移除的功能。

connectionString
String

要使用的連接字串。 此連接字串只用來建立資料庫伺服器的連接。 在連接字串中指定資料庫是沒有作用的。

例外狀況

無法連接至指定的資料庫伺服器。

features 值包含一或多個無效旗標。

處理作業所需要的 SQL 陳述式、嘗試從不存在的資料庫移除,或者指定資料庫中一或多個功能的資料表包含資料時,便會發生例外狀況。

範例

下列程式碼範例示範如何使用 Uninstall 型別的 SqlServices 方法。

// Remove membership and personalization.
SqlServices.Uninstall(database,
    SqlFeatures.Membership &
    SqlFeatures.Personalization,
    connectionString);
' Remove membership and personalization.
SqlServices.Uninstall(database, _
    SqlFeatures.Membership And _
    SqlFeatures.Personalization, _
    connectionString)

備註

如果 databasenull 或未提供, SqlServices 則會使用預設資料庫 aspnetdb

注意

與資料庫伺服器的連線是使用受信任的連接所建立。

另請參閱

適用於

Uninstall(String, String, String, String, SqlFeatures)

從 SQL Server 資料庫移除選取 ASP.NET 功能的元件。

public:
 static void Uninstall(System::String ^ server, System::String ^ user, System::String ^ password, System::String ^ database, System::Web::Management::SqlFeatures features);
public static void Uninstall (string server, string user, string password, string database, System.Web.Management.SqlFeatures features);
static member Uninstall : string * string * string * string * System.Web.Management.SqlFeatures -> unit
Public Shared Sub Uninstall (server As String, user As String, password As String, database As String, features As SqlFeatures)

參數

server
String

要移除功能的 SQL Server 執行個體。

user
String

連接至資料庫時使用的使用者名稱。

password
String

連接至資料庫時使用的密碼。

database
String

要移除功能的資料庫。

features
SqlFeatures

SqlFeatures 值的位元組合,指定要移除的功能。

例外狀況

無法連接至指定的資料庫伺服器。

features 值包含一或多個無效旗標。

處理作業所需要的 SQL 陳述式、嘗試從不存在的資料庫移除,或者指定資料庫中一或多個功能的資料表包含資料時,便會發生例外狀況。

備註

如果 databasenull 或未提供, SqlServices 則會使用預設資料庫 。 aspnetdb 如果 servernull 或未提供, SqlServices 則會使用預設的 SQL Server 實例。

注意

與資料庫伺服器的連線是使用受信任的連接所建立。

另請參閱

適用於