SqlTransaction 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SQL Server 데이터베이스에 만들 Transact-SQL 트랜잭션을 나타냅니다. 이 클래스는 상속될 수 없습니다.
public ref class SqlTransaction sealed : System::Data::Common::DbTransaction
public sealed class SqlTransaction : System.Data.Common.DbTransaction
type SqlTransaction = class
inherit DbTransaction
Public NotInheritable Class SqlTransaction
Inherits DbTransaction
- 상속
-
SqlTransaction
예제
다음 예제에서는 및 를 SqlConnectionSqlTransaction만듭니다. 사용 하는 방법을 보여 줍니다 합니다 BeginTransaction, Commit, 및 Rollback 메서드. 트랜잭션은 오류가 발생하거나 먼저 커밋되지 않고 삭제된 경우 롤백됩니다. Try
/Catch
오류 처리는 트랜잭션을 커밋하거나 롤백하려고 할 때 오류를 처리하는 데 사용됩니다.
using Microsoft.Data.SqlClient;
namespace Transaction1CS
{
class Program
{
static void Main()
{
string connectionString =
"Persist Security Info=False;Integrated Security=SSPI;database=Northwind;server=(local)";
ExecuteSqlTransaction(connectionString);
Console.ReadLine();
}
private static void ExecuteSqlTransaction(string connectionString)
{
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
SqlCommand command = connection.CreateCommand();
SqlTransaction transaction;
// Start a local transaction.
transaction = connection.BeginTransaction();
// Must assign both transaction object and connection
// to Command object for a pending local transaction
command.Connection = connection;
command.Transaction = transaction;
try
{
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')";
command.ExecuteNonQuery();
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')";
command.ExecuteNonQuery();
// Attempt to commit the transaction.
transaction.Commit();
Console.WriteLine("Both records are written to database.");
}
catch (Exception ex)
{
Console.WriteLine("Commit Exception Type: {0}", ex.GetType());
Console.WriteLine(" Message: {0}", ex.Message);
// Attempt to roll back the transaction.
try
{
transaction.Rollback();
}
catch (Exception ex2)
{
// This catch block will handle any errors that may have occurred
// on the server that would cause the rollback to fail, such as
// a closed connection.
Console.WriteLine("Rollback Exception Type: {0}", ex2.GetType());
Console.WriteLine(" Message: {0}", ex2.Message);
}
}
}
}
}
}
설명
애플리케이션을 SqlTransaction 호출 하 여 개체 BeginTransaction 에 SqlConnection 개체입니다. 트랜잭션과 연결된 모든 후속 작업(예: 트랜잭션 커밋 또는 중단)은 개체에서 SqlTransaction 수행됩니다.
참고
Try
/Catch
예외 처리는 를 커밋하거나 롤백 SqlTransaction할 때 항상 사용해야 합니다. 및 Rollback 는 둘 다 Commit 연결이 종료되었거나 트랜잭션이 이미 서버에서 롤백된 경우 를 생성 InvalidOperationException 합니다.
SQL Server 트랜잭션에 대한 자세한 내용은 명시적 트랜잭션 및코딩 효율적인 트랜잭션을 참조하세요.
속성
Connection |
트랜잭션과 관련된 SqlConnection 개체를 가져오거나 트랜잭션이 더 이상 유효하지 않으면 |
IsolationLevel |
이 트랜잭션에 대한 IsolationLevel을 지정합니다. |
메서드
Commit() |
데이터베이스 트랜잭션을 커밋합니다. |
Rollback() |
보류 상태에서 트랜잭션을 롤백합니다. |
Rollback(String) |
트랜잭션을 보류 상태에서 롤백하고, 트랜잭션이나 저장점 이름을 지정합니다. |
Save(String) |
트랜잭션의 일부를 롤백하는 데 사용할 수 있는 트랜잭션에 저장점을 만들고, 저장점 이름을 지정합니다. |