ff31fcfa2c4c8980e2e52f7cc48cfdbc3b56cc09
[mono.git] / mcs / class / Mono.Data.PostgreSqlClient / Mono.Data.PostgreSqlClient / PgSqlTransaction.cs
1 //
2 // System.Data.SqlClient.SqlTransaction.cs
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //
7 // (C) Ximian, Inc.
8 //
9
10 namespace System.Data.SqlClient
11 {
12         /// <summary>
13         /// Represents a transaction to be performed at a SQL database.
14         /// </summary>
15         public interface SqlTransaction : IDbTransaction
16         {
17                 void Commit();
18
19                 void Rollback();
20                 
21                 SqlConnection Connection{get;}
22
23                 IsolationLevel IsolationLevel{get;}
24         }       
25 }