次の方法で共有


BeginTransaction Method

この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションは修正することを検討してください。

The BeginTransaction method explicitly marks the start of a transaction unit.

構文

object
.BeginTransaction ( [ TransactionName ] )

Parts

  • object
    Expression that evaluates to an object in the Applies To list.
  • TransactionName
    Optional. A string naming the transaction.

Prototype (C/C++)

HRESULT BeginTransaction(
SQLDMO_LPCSTR szTransactionName = NULL);

解説

Use the BeginTransaction, CommitTransaction, and RollbackTransaction methods to implement application-defined transaction units.

ms140567.note(ja-jp,SQL.90).gifメモ :
SQL Distributed Management Objects (SQL-DMO) implements objects that can be used to automate Microsoft SQL Server administration. Most administrative functions use data definition language (DDL) statements for their implementation. Generally, application-defined transaction units are not respected by DDL. Where SQL Server does not implement transaction space for DDL, SQL-DMO does not extend DDL by defining a transaction space.

In general, use the BeginTransaction, CommitTransaction, and RollbackTransaction methods only when submitting Transact-SQL command batches for execution by using methods such as ExecuteImmediate. It is suggested that you do not leave transaction units open, but either commit or roll back the unit when the command batch execution method is complete.

Applies to:

SQLServer Object