home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c150 / 1.ddi / DBERR.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-11  |  3.3 KB  |  96 lines

  1. /*----------------------------------------------------------------------
  2.    dberr.h -- text of error messages used by dberr function
  3.  
  4.    Copyright (c) 1984-1990, Raima Corporation, All Rights Reserved
  5. ----------------------------------------------------------------------*/
  6.  
  7. #ifndef DBERR_H
  8. #define DBERR_H
  9.  
  10. /* dberr error/status messages */
  11. static char *user_error[] = {
  12.    "database not opened",
  13.    "invalid set",
  14.    "invalid record",
  15.    "invalid database",
  16.    "invalid field name",
  17.    "invalid db_address",
  18.    "no current record",
  19.    "set has no current owner",
  20.    "set has no current member",
  21.    "key value required",
  22.    "invalid lock value",
  23.    "record is owner of non-empty set(s)",
  24.    "record is member of set(s)",
  25.    "member already owned",
  26.    "field is a compound key",
  27.    "record not connected to set",
  28.    "field is not a valid key",
  29.    "record not legal owner of set",
  30.    "record not legal member of set",
  31.    "error in d_setpages (database open or bad param)",
  32.    "incompatible dictionary file",
  33.    "illegal attempt to delete system record",
  34.    "illegal attempt to lock locked set/record",
  35.    "attempt to access unlocked set/record",
  36.    "transaction id not supplied",
  37.    "transaction already active",
  38.    "transaction not active",
  39.    "transaction cannot begin due to locked files",
  40.    "cannot free locks within a transaction",
  41.    "too many changed database pages",
  42.    "cannot update database outside a transaction",
  43.    "exclusive access required",
  44.    "write locks not allowed on static files",
  45.    "unspecified or duplicate user id",
  46.    "database, path or file name too long",
  47.    "invalid file number was passed to d_renfile",
  48.    "field is not an optional key field",
  49.    "field is not defined in current record type",
  50.    "record/field has/in a compound key",
  51.    "invalid record or set number",
  52.    "record/set not timestamped",
  53.    "bad DBUSERID (contains non-alphanumeric)",
  54.    "NetBIOS has not been installed on machine",
  55.    "wrong # of elements in DBDPATH",
  56.    "wrong # of elements in DBFPATH",
  57.    "no current record type",
  58.    "invalid country table sort string",
  59.    "database not closed",
  60.    "invalid pointer",
  61.    "invalid internal ID"
  62. };
  63.  
  64. /* dberr system error messages */
  65. static char *system_error[] = {
  66.    "no more space on file",
  67.    "system error",
  68.    "page fault",
  69.    "no working file in dio",
  70.    "unable to allocate sufficient memory",
  71.    "error opening file",
  72.    "unable to get access to database taf file",
  73.    "database taf/log file error",
  74.    "inconsistent database locks",
  75.    "file record limit exceeded",
  76.    "key file inconsistency",
  77.    "maximum concurrent user limit exceeded",
  78.    "error seeking in database file",
  79.    "invalid file specified",
  80.    "error reading from a database/overflow file",
  81.    "lock manager synchronization error",
  82.    "debug check interrupt",
  83.    "network communications error",
  84.    "auto-recovery in process",
  85.    "error writing to a database/overflow file",
  86.    "no lock manager is installed",
  87.    "DBUSERID is already being used",
  88.    "the lock manager is busy",
  89.    "attempt to lock discarded memory",
  90.    "db_VISTA Semaphore error"
  91. };
  92.  
  93. #endif
  94. /* vpp -F -nUNIX -nWINDOWS -nWIN3 -nVANILLA_BSD -nVMS -nOS2 DBERR.h */
  95. /* vpp -F -nFAR_ALLOC -nARCHIVING -nDB_DLL -nBSD -nMEMLOCK -nIS_UNIX_REALLY -nREOPEN_FILES DBERR.h */
  96.