Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

162 lines
5.0 KiB

  1. ;//+---------------------------------------------------------------------------
  2. ;//
  3. ;// Microsoft OLE DB
  4. ;// Copyright (C) Microsoft Corporation, 1997 - 1999
  5. ;//
  6. ;// @doc
  7. ;//
  8. ;// @module PARSERR.MC | Messages.
  9. ;//
  10. ;// @rev 1 | 10-23-97 | Briants | Created.
  11. ;//-----------------------------------------------------------------------------
  12. ;
  13. ;#ifndef __PARSERR_H__
  14. ;#define __PARSERR_H__
  15. ;
  16. ;// ****************************************************************************
  17. ;// PLEASE DO NOT MODIFY PARSERR.h DIRECTLY
  18. ;// Changes need to be made in PARSERR.mc
  19. ;// ****************************************************************************
  20. ;
  21. ;#ifndef FACILITY_WINDOWS
  22. ;
  23. SeverityNames=(Success=0x0;STATUS_SEVERITY_SUCCESS
  24. CoError=0x2:STATUS_SEVERITY_COERROR
  25. )
  26. FacilityNames=(Interface=0x4:FACILITY_ITF
  27. Windows=0x8:FACILITY_WINDOWS
  28. )
  29. MessageId=2350 Facility=Windows Severity=Success SymbolicName=NOT_N_PARSE_ERROR
  30. Language=English
  31. NOTE: This dummy error message is necessary to force MC to output
  32. the above defines inside the FACILITY_WINDOWS guard instead
  33. of leaving it empty.
  34. .
  35. ;
  36. ;#endif // FACILITY_WINDOWS
  37. ;
  38. ;//--------------------------------------------------------------------------------
  39. ;//Language-dependent resources (localize)
  40. ;//--------------------------------------------------------------------------------
  41. LanguageNames=(English=0x409:MSB00001)
  42. ;//
  43. ;// messages 0x092e - 0x0992 are for msidxtr.lib
  44. ;//
  45. MessageId=0x092f Facility=Interface Severity=Success SymbolicName=IDS_MON_DEFAULT_ERROR
  46. Language=English
  47. Parser Error
  48. .
  49. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_ILLEGAL_PASSTHROUGH
  50. Language=English
  51. Illegal PASSTHROUGH query: '%1'
  52. .
  53. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_PARSE_ERR_1_PARAM
  54. Language=English
  55. Incorrect syntax near '%1'. SQLSTATE=42000
  56. .
  57. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_PARSE_ERR_2_PARAM
  58. Language=English
  59. Incorrect syntax near '%1'. Expected %2. SQLSTATE=42000
  60. .
  61. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_SEMI_COLON
  62. Language=English
  63. Multiple statement commands are not supported. SQLSTATE=42000
  64. .
  65. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_ORDINAL_OUT_OF_RANGE
  66. Language=English
  67. ORDER BY ordinal (%1) must be between 1 and %2. SQLSTATE=42000
  68. .
  69. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_VIEW_NOT_DEFINED
  70. Language=English
  71. View '%1' has not been defined in catalog '%2'. SQLSTATE=42S02
  72. .
  73. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_COLUMN_NOT_DEFINED
  74. Language=English
  75. Column '%1' has not been defined. SQLSTATE=42S22
  76. .
  77. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_BUILTIN_VIEW
  78. Language=English
  79. View name conflicts with a predefined view definition
  80. .
  81. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_OUT_OF_MEMORY
  82. Language=English
  83. Out of memory
  84. .
  85. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_SELECT_STAR
  86. Language=English
  87. SELECT * only allowed on views
  88. .
  89. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_OR_NOT
  90. Language=English
  91. <content search condition> OR NOT <content boolean term> not allowed
  92. .
  93. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_CANNOT_CONVERT
  94. Language=English
  95. Cannot convert %1 to type %2
  96. .
  97. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_OUT_OF_RANGE
  98. Language=English
  99. %1 is out of range for type %2
  100. .
  101. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_RELATIVE_INTERVAL
  102. Language=English
  103. Specification of <relative interval> must be negative
  104. .
  105. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_NOT_COLUMN_OF_VIEW
  106. Language=English
  107. '%1' is not a column in the view definition
  108. .
  109. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_BUILTIN_PROPERTY
  110. Language=English
  111. Property name conflicts with a predefined property definition
  112. .
  113. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_WEIGHT_OUT_OF_RANGE
  114. Language=English
  115. Weight value must be between 0.0 and 1.0
  116. .
  117. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_MATCH_STRING
  118. Language=English
  119. Error in matches string
  120. .
  121. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_PROPERTY_NAME_IN_VIEW
  122. Language=English
  123. Property name cannot be set because it is already being used in a VIEW. SQLSTATE=42000
  124. .
  125. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_VIEW_ALREADY_DEFINED
  126. Language=English
  127. View '%1' already exists in catalog '%2' and cannot be redefined. SQLSTATE=42S01
  128. .
  129. MessageId=+1 Facility=Interface Severity=Success SymbolicName=IDS_MON_INVALID_CATALOG
  130. Language=English
  131. Invalid catalog name '%1'. SQLSTATE=42000
  132. .
  133. ;#endif //__PARSERR_H__
  134. ;