Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data/Data/Support
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv9684/Support
Modified Files:
AdoTransactionObjectSupport.cs
Log Message:
NHibernate unit tests
SPRNET-714 - SessionFactory not bound to thread local storage if DbProvider for HibernateTransactionManager is null
SPRNET-715 - SpringSessionSynchronization did not close hibernate session with a nested transaction with TransactionPropagation.NotSupported
Index: AdoTransactionObjectSupport.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data/Data/Support/AdoTransactionObjectSupport.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** AdoTransactionObjectSupport.cs 3 Jul 2007 22:32:10 -0000 1.5
--- AdoTransactionObjectSupport.cs 29 Aug 2007 03:42:13 -0000 1.6
***************
*** 25,28 ****
--- 25,29 ----
using Common.Logging;
using Spring.Transaction;
+ using Spring.Transaction.Support;
#endregion
***************
*** 38,42 ****
/// <author>Mark Pollack (.NET)</author>
/// <version>$Id$</version>
! public abstract class AdoTransactionObjectSupport : ISavepointManager
{
#region Fields
--- 39,43 ----
/// <author>Mark Pollack (.NET)</author>
/// <version>$Id$</version>
! public abstract class AdoTransactionObjectSupport : ISavepointManager, ISmartTransactionObject
{
#region Fields
***************
*** 87,91 ****
}
! #endregion
/// <summary>
--- 88,99 ----
}
! /// <summary>
! /// Return whether the transaction is internally marked as rollback-only.
! /// </summary>
! /// <value></value>
! /// <returns>True of the transaction is marked as rollback-only.</returns>
! public abstract bool RollbackOnly { get; }
!
! #endregion
/// <summary>
***************
*** 115,119 ****
/// or <see cref="Spring.Transaction.ISavepointManager.ReleaseSavepoint"/>.
/// </returns>
! public void CreateSavepoint(string savepointName)
{
throw new NotImplementedException();
--- 123,127 ----
/// or <see cref="Spring.Transaction.ISavepointManager.ReleaseSavepoint"/>.
/// </returns>
! public virtual void CreateSavepoint(string savepointName)
{
throw new NotImplementedException();
***************
*** 130,134 ****
/// If the rollback failed.
/// </exception>
! public void RollbackToSavepoint(string savepoint)
{
throw new NotImplementedException();
--- 138,142 ----
/// If the rollback failed.
/// </exception>
! public virtual void RollbackToSavepoint(string savepoint)
{
throw new NotImplementedException();
***************
*** 152,159 ****
/// If the release failed.
/// </exception>
! public void ReleaseSavepoint(string savepoint)
{
throw new NotImplementedException();
}
}
}
--- 160,169 ----
/// If the release failed.
/// </exception>
! public virtual void ReleaseSavepoint(string savepoint)
{
throw new NotImplementedException();
}
+
+
}
}
|