OciExecuteMode.cs 753 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // OciExecuteMode.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 OciExecuteMode {
  21. Default = 0x00,
  22. BatchMode = 0x01,
  23. ExactFetch = 0x02,
  24. KeepFetchState = 0x04,
  25. ScrollableCursor = 0x08,
  26. DescribeOnly = 0x10,
  27. CommitOnSuccess = 0x20,
  28. NonBlocking = 0x40,
  29. BatchErrors = 0x80,
  30. ParseOnly = 0x100,
  31. ShowDmlWarnings = 0x400
  32. }
  33. }