OciTransactionFlags.cs 645 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // OciTransactionFlags.cs
  3. //
  4. // Part of managed C#/.NET library System.Data.OracleClient.dll
  5. //
  6. // Part of the Mono class libraries at
  7. // mcs/class/System.Data.OracleClient/System.Data.OracleClient.Oci
  8. //
  9. // Assembly: System.Data.OracleClient.dll
  10. // Namespace: System.Data.OracleClient.Oci
  11. //
  12. // Author:
  13. // Tim Coleman <[email protected]>
  14. //
  15. // Copyright (C) Tim Coleman, 2003
  16. //
  17. using System;
  18. namespace System.Data.OracleClient.Oci {
  19. [Flags]
  20. internal enum OciTransactionFlags {
  21. New = 0x01,
  22. Resume = 0x04,
  23. ReadOnly = 0x100,
  24. ReadWrite = 0x200,
  25. Serializable = 0x400,
  26. Tight = 0x10000,
  27. Loose = 0x20000
  28. }
  29. }