OciErrorInfo.cs 547 B

1234567891011121314151617181920212223242526
  1. //
  2. // OciErrorInfo.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. internal struct OciErrorInfo
  20. {
  21. public int ErrorCode;
  22. public string ErrorMessage;
  23. }
  24. }