2004-04-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / System.Data / System.Data.Sql / ISqlTransaction.cs
1 //
2 // System.Data.Sql.ISqlTransaction
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
9
10 #if NET_1_2
11
12 namespace System.Data.Sql {
13         public interface ISqlTransaction : IDbTransaction, IDisposable
14         {
15                 #region Properties
16
17                 ISqlConnection Connection { get; }
18
19                 #endregion // Properties
20
21                 #region Methods
22
23                 void Rollback (string transactionName);
24                 void Save (string savePoint);
25
26                 #endregion // Methods
27         }
28 }
29
30 #endif