Error.cpp
上传用户:lkd6667
上传日期:2015-05-13
资源大小:1448k
文件大小:2k
源码类别:

其他数据库

开发平台:

C/C++

  1. #include "Error.h"
  2. char* ErrorMessage[]=
  3. {
  4.   "Error 1000: (malloc)there is insufficient memory available.",
  5.   "Error 1001: Cannot access the address of file condition.",
  6.   "Error 1002: (write)the file handle is invalid or the file is not opened for writing or there is not enough space left on the device for the operation.",
  7.   "Error 1003: illegal page number (less than zero).",
  8.   "Error 1004: cannot access the page far away from the end of the file",
  9.   "Error 1005: (lseek)the file handle is invalid or the value for origin is invalid or the position the position specified by offset is before the beginning of the file.",
  10.   "Error 1006: (open)cannot create file",
  11.   
  12.   "Error 1007: Primary Key demanded has not existed yet!",
  13.   "Error 1008: Column demanded has not existed yet!",
  14.   "Error 1009: Unknown relation operator!",
  15.   "Error 1010: Unknown type!",
  16.   "Error 1011: Not a select based on primary key!",
  17.   "Error 1012: Type mismatch!",
  18.   "Error 1013: Length Invalid for type char!",
  19.   "Error 1014: Invalid Value!",
  20.   "Error 1015: Value of Primary Key can not be null!",
  21.   "Error 1016: Inadequate value for every column!",
  22.   "Error 1017: No value for some not null column!",
  23.   "Error 1018: Update denied on primary key!",
  24.   "Error 1019: Information Inadequate for selection(Every attribute should be included)!",
  25.   "Error 1020: Result is null!",
  26.   
  27.   "Error 1021: Key Attribute type is wrong,used for debug!",
  28.   "Error 1022: Search path error in b+ tree!",
  29.   "Error 1023: The primary key hasn't existed,used for debug!",
  30.   "Error 1024: The primary key has existed,used for debug!",
  31.   "Error 1025: The primary key has existed!",
  32.   "Error 1026: The primary Key hasn't existed!",
  33.   "Error 1027: No Reocrd!",
  34.   "Error 1028: The tree isn't enough depth",
  35.   "Error 1029: The required type is not supported yet for the time being.",
  36.   "Error 1030: Fatal error with data missing,maybe it is a media failure.",
  37.   "Error 1031: Cannot read data from file,maybe it is a media failure.",
  38.   "Error 1032: Overloading of (== const int) only serve ZERO",
  39.   "Error 1033: Too few memory pages,mustn't be less than 3.",
  40.   "Error 1034: Primary Key is too long!"
  41. };
  42. void DispatchError(int errorcode)
  43. {
  44.     std::cout<<"n"<<ErrorMessage[errorcode-1000]<<"n";
  45. }