ImplicitTransactions プロパティ

トランザクションのコミットまたはロールバック後に、次の Transact-SQL トランザクションを自動的に開始するかどうかを示す Boolean プロパティ値を取得します。値の設定も可能です。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)

構文

'宣言
<SfcPropertyAttribute> _
Public Property ImplicitTransactions As Boolean
    Get
    Set
'使用
Dim instance As UserOptions
Dim value As Boolean

value = instance.ImplicitTransactions

instance.ImplicitTransactions = value
[SfcPropertyAttribute]
public bool ImplicitTransactions { get; set; }
[SfcPropertyAttribute]
public:
property bool ImplicitTransactions {
    bool get ();
    void set (bool value);
}
[<SfcPropertyAttribute>]
member ImplicitTransactions : bool with get, set
function get ImplicitTransactions () : boolean
function set ImplicitTransactions (value : boolean)

プロパティ値

型: System. . :: . .Boolean
トランザクションのコミット ステートメントまたはロールバック ステートメントの後で、新しいトランザクションを自動的に開始するかどうかを示す Boolean 値です。
True の場合、コミットまたはロールバック後にトランザクションが自動的に開始されます。
False (既定値) の場合、BEGIN TRANSACTION 構文を使用してトランザクションを明示的に開始する必要があります。