ISqlTransaction.cs 459 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // System.Data.Sql.ISqlTransaction
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. namespace System.Data.Sql {
  11. public interface ISqlTransaction : IDbTransaction, IDisposable
  12. {
  13. #region Properties
  14. ISqlConnection Connection { get; }
  15. #endregion // Properties
  16. #region Methods
  17. void Rollback (string transactionName);
  18. void Save (string savePoint);
  19. #endregion // Methods
  20. }
  21. }
  22. #endif