db0err.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Global error codes for the database
  3. (c) 1996 Innobase Oy
  4. Created 5/24/1996 Heikki Tuuri
  5. *******************************************************/
  6. #ifndef db0err_h
  7. #define db0err_h
  8. #define DB_SUCCESS 10
  9. /* The following are error codes */
  10. #define DB_ERROR 11
  11. #define DB_OUT_OF_MEMORY 12
  12. #define DB_OUT_OF_FILE_SPACE 13
  13. #define DB_LOCK_WAIT 14
  14. #define DB_DEADLOCK 15
  15. #define DB_ROLLBACK 16
  16. #define DB_DUPLICATE_KEY 17
  17. #define DB_QUE_THR_SUSPENDED 18
  18. #define DB_MISSING_HISTORY 19 /* required history data has been
  19. deleted due to lack of space in
  20. rollback segment */
  21. #define DB_CLUSTER_NOT_FOUND 30
  22. #define DB_TABLE_NOT_FOUND 31
  23. #define DB_MUST_GET_MORE_FILE_SPACE 32 /* the database has to be stopped
  24. and restrated with more file space */
  25. #define DB_TABLE_IS_BEING_USED 33
  26. #define DB_TOO_BIG_RECORD 34 /* a record in an index would become
  27. bigger than 1/2 free space in a page
  28. frame */
  29. /* The following are partial failure codes */
  30. #define DB_FAIL  1000
  31. #define DB_OVERFLOW  1001
  32. #define DB_UNDERFLOW  1002
  33. #define DB_STRONG_FAIL 1003
  34. #define DB_RECORD_NOT_FOUND 1500
  35. #define DB_END_OF_INDEX 1501
  36. #endif