프로퍼티 | 타입 | 설명 | |
---|---|---|---|
log | ILog |
메소드 | 설명 | |
---|---|---|
CreateSavepoint ( string savepointName ) : void |
Create a new savepoint. You can roll back to a specific savepoint via Spring.Transaction.ISavepointManager.RollbackToSavepoint, and explicitly release a savepoint that you don't need anymore via Spring.Transaction.ISavepointManager.ReleaseSavepoint. Note that most transaction managers will automatically release savepoints at transaction completion. |
|
ReleaseSavepoint ( string savepoint ) : void |
Explicitly release the given savepoint. Note that most transaction managers will automatically release savepoints at transaction completion. Implementations should fail as silently as possible if proper resource cleanup will still happen at transaction completion. |
|
RollbackToSavepoint ( string savepoint ) : void |
Roll back to the given savepoint. The savepoint will be automatically released afterwards. |
public CreateSavepoint ( string savepointName ) : void | ||
savepointName | string | /// The name of the savepoint to create. /// |
리턴 | void |
public ReleaseSavepoint ( string savepoint ) : void | ||
savepoint | string | The savepoint to release. |
리턴 | void |
public RollbackToSavepoint ( string savepoint ) : void | ||
savepoint | string | The savepoint to roll back to. |
리턴 | void |