共用方式為


SqlExecutionException 建構函式

定義

初始化 SqlExecutionException 類別的新執行個體。

多載

SqlExecutionException()

使用預設值,初始化 SqlExecutionException 類別的新執行個體。

SqlExecutionException(String)

使用傳入的訊息來初始化 SqlExecutionException 類別的新執行個體。

SqlExecutionException(String, Exception)

使用傳入的訊息和例外狀況,初始化 SqlExecutionException 類別的新執行個體。

SqlExecutionException(String, String, String, String, String, SqlException)

初始化 SqlExecutionException 類別的新執行個體。

SqlExecutionException()

使用預設值,初始化 SqlExecutionException 類別的新執行個體。

public:
 SqlExecutionException();
public SqlExecutionException ();
Public Sub New ()

適用於

SqlExecutionException(String)

使用傳入的訊息來初始化 SqlExecutionException 類別的新執行個體。

public:
 SqlExecutionException(System::String ^ message);
public SqlExecutionException (string message);
new System.Web.Management.SqlExecutionException : string -> System.Web.Management.SqlExecutionException
Public Sub New (message As String)

參數

message
String

解釋例外狀況原因的錯誤訊息。

適用於

SqlExecutionException(String, Exception)

使用傳入的訊息和例外狀況,初始化 SqlExecutionException 類別的新執行個體。

public:
 SqlExecutionException(System::String ^ message, Exception ^ innerException);
public SqlExecutionException (string message, Exception innerException);
new System.Web.Management.SqlExecutionException : string * Exception -> System.Web.Management.SqlExecutionException
Public Sub New (message As String, innerException As Exception)

參數

message
String

解釋例外狀況原因的錯誤訊息。

innerException
Exception

發生的 Exception

適用於

SqlExecutionException(String, String, String, String, String, SqlException)

初始化 SqlExecutionException 類別的新執行個體。

public:
 SqlExecutionException(System::String ^ message, System::String ^ server, System::String ^ database, System::String ^ sqlFile, System::String ^ commands, System::Data::SqlClient::SqlException ^ sqlException);
public SqlExecutionException (string message, string server, string database, string sqlFile, string commands, System.Data.SqlClient.SqlException sqlException);
new System.Web.Management.SqlExecutionException : string * string * string * string * string * System.Data.SqlClient.SqlException -> System.Web.Management.SqlExecutionException
Public Sub New (message As String, server As String, database As String, sqlFile As String, commands As String, sqlException As SqlException)

參數

message
String

解釋例外狀況原因的錯誤訊息。

server
String

執行 SQL 命令的 SQL Server 執行個體。

database
String

執行 SQL 命令的資料庫。

sqlFile
String

安裝檔名稱,該檔案包含要執行的 SQL 命令。

commands
String

例外狀況發生時所執行的 SQL 命令。

sqlException
SqlException

處理 SQL 命令時發生的 SqlException

另請參閱

適用於