| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- //
- // OciTransactionHandle.cs
- //
- // Part of managed C#/.NET library System.Data.OracleClient.dll
- //
- // Part of the Mono class libraries at
- // mcs/class/System.Data.OracleClient/System.Data.OracleClient.Oci
- //
- // Assembly: System.Data.OracleClient.dll
- // Namespace: System.Data.OracleClient.Oci
- //
- // Author:
- // Tim Coleman <[email protected]>
- //
- // Copyright (C) Tim Coleman, 2003
- //
- using System;
- using System.Runtime.InteropServices;
- namespace System.Data.OracleClient.Oci {
- internal sealed class OciTransactionHandle : OciHandle, IDisposable
- {
- #region Fields
- bool disposed = false;
- OciErrorHandle errorHandle;
- OciServiceHandle serviceHandle;
- #endregion // Fields
- #region Constructors
- public OciTransactionHandle (OciHandle parent, IntPtr handle)
- : base (OciHandleType.Transaction, parent, handle)
- {
- }
- #endregion // Constructors
- #region Properties
- public OciErrorHandle ErrorHandle {
- get { return errorHandle; }
- set { errorHandle = value; }
- }
- public OciServiceHandle Service {
- get { return serviceHandle; }
- set { serviceHandle = value; }
- }
- #endregion // Properties
- #region Methods
- public void AttachToServiceContext ()
- {
- int status = 0;
- status = OciCalls.OCIAttrSet (Service,
- OciHandleType.Service,
- this,
- 0,
- OciAttributeType.Transaction,
- ErrorHandle);
- if (status != 0) {
- OciErrorInfo info = ErrorHandle.HandleError ();
- throw new OracleException (info.ErrorCode, info.ErrorMessage);
- }
- }
- public void DetachFromServiceContext ()
- {
- int status = 0;
- status = OciCalls.OCIAttrSet (Service,
- OciHandleType.Service,
- IntPtr.Zero,
- 0,
- OciAttributeType.Transaction,
- ErrorHandle);
- if (status != 0)
- {
- OciErrorInfo info = ErrorHandle.HandleError ();
- throw new OracleException (info.ErrorCode, info.ErrorMessage);
- }
- }
- public void Begin ()
- {
- int status = 0;
- AttachToServiceContext ();
- status = OciCalls.OCITransStart (Service,
- ErrorHandle,
- 60,
- OciTransactionFlags.New);
- if (status != 0) {
- OciErrorInfo info = ErrorHandle.HandleError ();
- throw new OracleException (info.ErrorCode, info.ErrorMessage);
- }
- }
- public void Commit ()
- {
- int status = 0;
- AttachToServiceContext ();
- try {
- status = OciCalls.OCITransCommit (Service, ErrorHandle, 0);
- if (status != 0)
- {
- OciErrorInfo info = ErrorHandle.HandleError ();
- throw new OracleException (info.ErrorCode, info.ErrorMessage);
- }
- }
- finally {
- DetachFromServiceContext ();
- }
- }
- protected override void Dispose (bool disposing)
- {
- if (!disposed) {
- disposed = true;
- base.Dispose (disposing);
- }
- }
- public void Rollback ()
- {
- try {
- int status = 0;
- AttachToServiceContext ();
- status = OciCalls.OCITransRollback (Service, ErrorHandle, 0);
- if (status != 0) {
- OciErrorInfo info = ErrorHandle.HandleError ();
- throw new OracleException (info.ErrorCode, info.ErrorMessage);
- }
- }
- finally {
- DetachFromServiceContext ();
- }
- }
- #endregion // Methods
- }
- }
|