SqlExecutionException クラス

定義

SQL 実行例外のクラスを System.Web.Management 名前空間に定義します。

public ref class SqlExecutionException sealed : SystemException
[System.Serializable]
public sealed class SqlExecutionException : SystemException
[<System.Serializable>]
type SqlExecutionException = class
    inherit SystemException
Public NotInheritable Class SqlExecutionException
Inherits SystemException
継承
SqlExecutionException
属性

次のコード例は、例外の種類を使用する方法を SqlExecutionException 示しています。 このコード例は、SqlServices クラスのために提供されている大規模な例の一部です。

Console.WriteLine(
    "An SQL execution exception occurred.");
Console.WriteLine();
Console.WriteLine("  Message: {0}",
    sqlExecutionException.Message);
Console.WriteLine("  Server: {0}",
    sqlExecutionException.Server);
Console.WriteLine("  Database: {0}",
    sqlExecutionException.Database);
Console.WriteLine("  Commands: {0}",
    sqlExecutionException.Commands);
Console.WriteLine("  SqlFile: {0}",
    sqlExecutionException.SqlFile);
Console.WriteLine("  Inner Exception: {0}",
    sqlExecutionException.Exception);
Console.WriteLine( _
    "An SQL execution exception occurred.")
Console.WriteLine()
Console.WriteLine("  Message: {0}", _
    sqlExecutionException.Message)
Console.WriteLine("  Server: {0}", _
    sqlExecutionException.Server)
Console.WriteLine("  Database: {0}", _
    sqlExecutionException.Database)
Console.WriteLine("  Commands: {0}", _
    sqlExecutionException.Commands)
Console.WriteLine("  SqlFile: {0}", _
    sqlExecutionException.SqlFile)
Console.WriteLine("  Inner Exception: {0}", _
    sqlExecutionException.Exception)

注釈

このクラスは、SQL実行例外を他のアプリケーションの例外と区別するための手段として提供されます。

コンストラクター

SqlExecutionException()

既定値を使用して SqlExecutionException クラスの新しいインスタンスを初期化します。

SqlExecutionException(String)

渡されたメッセージを使用して、SqlExecutionException クラスの新しいインスタンスを初期化します。

SqlExecutionException(String, Exception)

渡されたメッセージおよび例外を使用して SqlExecutionException クラスの新しいインスタンスを初期化します。

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

SqlExecutionException クラスの新しいインスタンスを初期化します。

プロパティ

Commands

例外の発生時に実行されていた SQL コマンドを取得します。

Data

例外に関する追加のユーザー定義情報を提供する、キーと値のペアのコレクションを取得します。

(継承元 Exception)
Database

例外の発生時にアクセスされていたデータベースの名前を取得します。

Exception

SQL コマンドの処理中に発生した例外を取得します。

HelpLink

この例外に関連付けられているヘルプ ファイルへのリンクを取得または設定します。

(継承元 Exception)
HResult

特定の例外に割り当てられているコード化数値である HRESULT を取得または設定します。

(継承元 Exception)
InnerException

現在の例外の原因となる Exception インスタンスを取得します。

(継承元 Exception)
Message

現在の例外を説明するメッセージを取得します。

(継承元 Exception)
Server

例外の発生時にアクセスされていた SQL Server インスタンスを取得します。

Source

エラーの原因となるアプリケーションまたはオブジェクトの名前を取得または設定します。

(継承元 Exception)
SqlFile

例外の発生時に実行されていた SQL コマンドが記録されているファイルの名前およびパスを取得します。

StackTrace

呼び出し履歴で直前のフレームの文字列形式を取得します。

(継承元 Exception)
TargetSite

現在の例外がスローされたメソッドを取得します。

(継承元 Exception)

メソッド

Equals(Object)

指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
GetBaseException()

派生クラスでオーバーライドされた場合、それ以後に発生する 1 つ以上の例外の根本原因である Exception を返します。

(継承元 Exception)
GetHashCode()

既定のハッシュ関数として機能します。

(継承元 Object)
GetObjectData(SerializationInfo, StreamingContext)

例外をシリアル化できるようにします。

GetType()

現在のインスタンスのランタイム型を取得します。

(継承元 Exception)
MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
ToString()

現在の例外の文字列形式を作成して返します。

(継承元 Exception)

events

SerializeObjectState
互換性のために残されています。

例外がシリアル化され、例外に関するシリアル化されたデータを含む例外状態オブジェクトが作成されたときに発生します。

(継承元 Exception)

適用対象

こちらもご覧ください