FDO API Reference Feature Data Objects

FdoMessage.h

Go to the documentation of this file.
00001 //
00002 //  Values are 32 bit values layed out as follows:
00003 //
00004 //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
00005 //   1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
00006 //  +---+-+-+-----------------------+-------------------------------+
00007 //  |Sev|C|R|     Facility          |               Code            |
00008 //  +---+-+-+-----------------------+-------------------------------+
00009 //
00010 //  where
00011 //
00012 //      Sev - is the severity code
00013 //
00014 //          00 - Success
00015 //          01 - Informational
00016 //          10 - Warning
00017 //          11 - Error
00018 //
00019 //      C - is the Customer code flag
00020 //
00021 //      R - is a reserved bit
00022 //
00023 //      Facility - is the facility code
00024 //
00025 //      Code - is the facility's status code
00026 //
00027 //
00028 // Define the facility codes
00029 //
00030 
00031 
00032 //
00033 // Define the severity codes
00034 //
00035 
00036 
00037 //
00038 // MessageId: FDO_1_INDEXOUTOFBOUNDS
00039 //
00040 // MessageText:
00041 //
00042 //  Item index out of bounds.
00043 //
00044 #define FDO_1_INDEXOUTOFBOUNDS           0x00000001L
00045 
00046 //
00047 // MessageId: FDO_1_BADPARAMETER
00048 //
00049 // MessageText:
00050 //
00051 //  Bad Parameter.
00052 //
00053 #define FDO_1_BADPARAMETER               0x00000002L
00054 
00055 //
00056 // MessageId: SCHEMA_1_BADATTRIBUTENAME
00057 //
00058 // MessageText:
00059 //
00060 //  Bad schema attribute name.
00061 //
00062 #define SCHEMA_1_BADATTRIBUTENAME        0x000003E9L
00063 
00064 //
00065 // MessageId: SCHEMA_2_BASEPROPERTIESALREADYSET
00066 //
00067 // MessageText:
00068 //
00069 //  Base properties already set.
00070 //
00071 #define SCHEMA_2_BASEPROPERTIESALREADYSET 0x000003EAL
00072 
00073 //
00074 // MessageId: SCHEMA_3_CLASSNOTADDED
00075 //
00076 // MessageText:
00077 //
00078 //  Class has not already been added to the FeatureSchema.
00079 //
00080 #define SCHEMA_3_CLASSNOTADDED           0x000003EBL
00081 
00082 //
00083 // MessageId: SCHEMA_4_IDENTITYPROPERTYNOTPROPERTY
00084 //
00085 // MessageText:
00086 //
00087 //  Identity Property must be member of Property collection.
00088 //
00089 #define SCHEMA_4_IDENTITYPROPERTYNOTPROPERTY 0x000003ECL
00090 
00091 //
00092 // MessageId: SCHEMA_5_INVALIDELEMENTNAME
00093 //
00094 // MessageText:
00095 //
00096 //  Invalid element name.
00097 //
00098 #define SCHEMA_5_INVALIDELEMENTNAME      0x000003EDL
00099 
00100 //
00101 // MessageId: SCHEMA_6_NAMENOTINATTRIBUTEDICTIONARY
00102 //
00103 // MessageText:
00104 //
00105 //  Name not in schema attribute dictionary.
00106 //
00107 #define SCHEMA_6_NAMENOTINATTRIBUTEDICTIONARY 0x000003EEL
00108 
00109 //
00110 // MessageId: SCHEMA_7_RELATIONENDNOTADDED
00111 //
00112 // MessageText:
00113 //
00114 //  RelationEnd has not been added to a FeatureSchema.
00115 //
00116 #define SCHEMA_7_RELATIONENDNOTADDED     0x000003EFL
00117 
00118 //
00119 // MessageId: SCHEMA_8_ATTRIBUTEALREADYINDICTIONARY
00120 //
00121 // MessageText:
00122 //
00123 //  Schema attribute already in dictionary.
00124 //
00125 #define SCHEMA_8_ATTRIBUTEALREADYINDICTIONARY 0x000003F0L
00126 
00127 //
00128 // MessageId: SCHEMA_9_ATTRIBUTENOTFOUND
00129 //
00130 // MessageText:
00131 //
00132 //  Schema attribute not found.
00133 //
00134 #define SCHEMA_9_ATTRIBUTENOTFOUND       0x000003F1L
00135 
00136 //
00137 // MessageId: SCHEMA_10_OBJECTHASPARENT
00138 //
00139 // MessageText:
00140 //
00141 //  Object already has parent.
00142 //
00143 #define SCHEMA_10_OBJECTHASPARENT        0x000003F2L
00144 
00145 //
00146 // MessageId: SCHEMA_11_OWNPARENT
00147 //
00148 // MessageText:
00149 //
00150 //  Element cannot be its own parent/grandparent.
00151 //
00152 #define SCHEMA_11_OWNPARENT              0x000003F3L
00153 
00154 //
00155 // MessageId: SCHEMA_12_OWNBASECLASS
00156 //
00157 // MessageText:
00158 //
00159 //  ClassDefinition cannot be its own base class.
00160 //
00161 #define SCHEMA_12_OWNBASECLASS           0x000003F4L
00162 
00163 //
00164 // MessageId: SCHEMA_13_IDENTITYPROPERTYONSUBCLASS
00165 //
00166 // MessageText:
00167 //
00168 //  A Class with a Base Class cannot have an Identity Property.
00169 //
00170 #define SCHEMA_13_IDENTITYPROPERTYONSUBCLASS 0x000003F5L
00171 
00172 //
00173 // MessageId: SCHEMA_14_SUBCLASSWITHIDENTITYPROPERTIES
00174 //
00175 // MessageText:
00176 //
00177 //  A Class with Identity Properties cannot have a Base Class.
00178 //
00179 #define SCHEMA_14_SUBCLASSWITHIDENTITYPROPERTIES 0x000003F6L
00180 
00181 //
00182 // MessageId: SCHEMA_15_NEGATIVELENGTHNOTALLOWED
00183 //
00184 // MessageText:
00185 //
00186 //  A Data Property cannot have a negative length.
00187 //
00188 #define SCHEMA_15_NEGATIVELENGTHNOTALLOWED 0x000003F7L
00189 
00190 //
00191 // MessageId: SCHEMA_16_NEGATIVEPRECISIONNOTALLOWED
00192 //
00193 // MessageText:
00194 //
00195 //  A Data Property cannot have a negative precision.
00196 //
00197 #define SCHEMA_16_NEGATIVEPRECISIONNOTALLOWED 0x000003F8L
00198 
00199 //
00200 // MessageId: SCHEMA_17_ASSOCIATIONMISSMATCHERROR
00201 //
00202 // MessageText:
00203 //
00204 //  Type or number missmatch between the identity properties and the reverse identity properties. 
00205 //
00206 #define SCHEMA_17_ASSOCIATIONMISSMATCHERROR 0x000003F9L
00207 
00208 //
00209 // MessageId: SCHEMA_18_ASSOCIATIONIDENTITYERROR
00210 //
00211 // MessageText:
00212 //
00213 //  Identity properties not part of the associated class.
00214 //
00215 #define SCHEMA_18_ASSOCIATIONIDENTITYERROR 0x000003FAL
00216 
00217 //
00218 // MessageId: SCHEMA_19_UNSUPPORTEDXSDELEMENT
00219 //
00220 // MessageText:
00221 //
00222 //  Error reading schema '#1$ls' from XML, element '#2$ls' in #3$ls not supported by FDO.
00223 //
00224 #define SCHEMA_19_UNSUPPORTEDXSDELEMENT  0x000003FBL
00225 
00226 //
00227 // MessageId: SCHEMA_20_UNSUPPORTEDXSDATTRIBUTE
00228 //
00229 // MessageText:
00230 //
00231 //  Error reading schema '#1$ls' from XML, attribute '#2$ls' in #3$ls not supported by FDO.
00232 //
00233 #define SCHEMA_20_UNSUPPORTEDXSDATTRIBUTE 0x000003FCL
00234 
00235 //
00236 // MessageId: SCHEMA_21_UNSUPPORTEDXSDATTRIBUTEVALUE
00237 //
00238 // MessageText:
00239 //
00240 //  Error reading schema '#1$ls' from XML, #2$ls/@#3$ls value '#4$ls' not supported by FDO.
00241 //
00242 #define SCHEMA_21_UNSUPPORTEDXSDATTRIBUTEVALUE 0x000003FDL
00243 
00244 //
00245 // MessageId: SCHEMA_22_MISSINGOBJPROPCLASS
00246 //
00247 // MessageText:
00248 //
00249 //  Error reading schema from XML, class %1$ls for object property %2$ls not found in current feature schema collection.
00250 //
00251 #define SCHEMA_22_MISSINGOBJPROPCLASS    0x000003FEL
00252 
00253 //
00254 // MessageId: SCHEMA_23_UNSUPPORTEDXSDGBLELEM
00255 //
00256 // MessageText:
00257 //
00258 //  Error reading schema '#1$ls' from XML, global element #2$ls type must be '#3$ls' or '#4$ls'.
00259 //
00260 #define SCHEMA_23_UNSUPPORTEDXSDGBLELEM  0x000003FFL
00261 
00262 //
00263 // MessageId: SCHEMA_24_CLASSTYPECONFLICT
00264 //
00265 // MessageText:
00266 //
00267 //  Cannot change class type of class '%1$ls'. 
00268 //
00269 #define SCHEMA_24_CLASSTYPECONFLICT      0x00000400L
00270 
00271 //
00272 // MessageId: SCHEMA_25_PROPERTYTYPECONFLICT
00273 //
00274 // MessageText:
00275 //
00276 //  Cannot change property type of property '%1$ls'. 
00277 //
00278 #define SCHEMA_25_PROPERTYTYPECONFLICT   0x00000401L
00279 
00280 //
00281 // MessageId: SCHEMA_26_BASECLASSREF
00282 //
00283 // MessageText:
00284 //
00285 //  Error reading Feature Schemas from XML; base class '%1$ls:%2$ls' for class '%3$ls' not found. 
00286 //
00287 #define SCHEMA_26_BASECLASSREF           0x00000402L
00288 
00289 //
00290 // MessageId: SCHEMA_27_OBJPROPCLASSREF
00291 //
00292 // MessageText:
00293 //
00294 //  Error reading Feature Schemas from XML; class '%1$ls:%2$ls' for object property '%3$ls' not found. 
00295 //
00296 #define SCHEMA_27_OBJPROPCLASSREF        0x00000403L
00297 
00298 //
00299 // MessageId: SCHEMA_28_BASEIDPROPS
00300 //
00301 // MessageText:
00302 //
00303 //  Error reading Feature Schemas from XML; identity properties for class '%1$ls' differ from those of base class '%2$ls'.
00304 //
00305 #define SCHEMA_28_BASEIDPROPS            0x00000404L
00306 
00307 //
00308 // MessageId: SCHEMA_29_IDPROPREF
00309 //
00310 // MessageText:
00311 //
00312 //  Error reading Feature Schemas from XML; identity property '%1$ls' is not a property in class '%2$ls'.
00313 //
00314 #define SCHEMA_29_IDPROPREF              0x00000405L
00315 
00316 //
00317 // MessageId: SCHEMA_30_BASEIDPROPS
00318 //
00319 // MessageText:
00320 //
00321 //  Error reading Feature Schemas from XML; object property '%1$ls' has no class; cannot resolve its identity property.
00322 //
00323 #define SCHEMA_30_BASEIDPROPS            0x00000406L
00324 
00325 //
00326 // MessageId: SCHEMA_31_OBJPROPIDPROPREF
00327 //
00328 // MessageText:
00329 //
00330 //  Error reading Feature Schemas from XML; identity property '%1$ls' for object property '%2$ls' not found.
00331 //
00332 #define SCHEMA_31_OBJPROPIDPROPREF       0x00000407L
00333 
00334 //
00335 // MessageId: SCHEMA_32_GEOMPROPREF
00336 //
00337 // MessageText:
00338 //
00339 //  Error reading Feature Schemas from XML; geometry property '%1$ls' for feature class '%2$ls' not found.
00340 //
00341 #define SCHEMA_32_GEOMPROPREF            0x00000408L
00342 
00343 //
00344 // MessageId: SCHEMA_33_BADDATAPROPSTRING
00345 //
00346 // MessageText:
00347 //
00348 //  Invalid property data type string %1$ls.
00349 //
00350 #define SCHEMA_33_BADDATAPROPSTRING      0x00000409L
00351 
00352 //
00353 // MessageId: SCHEMA_34_BADDATAPROPTYPE
00354 //
00355 // MessageText:
00356 //
00357 //  Invalid property data type %1$d.
00358 //
00359 #define SCHEMA_34_BADDATAPROPTYPE        0x0000040AL
00360 
00361 //
00362 // MessageId: SCHEMA_35_NOCLASSTYPE
00363 //
00364 // MessageText:
00365 //
00366 //  Cannot determine class type for class %1$ls.
00367 //
00368 #define SCHEMA_35_NOCLASSTYPE            0x0000040BL
00369 
00370 //
00371 // MessageId: SCHEMA_36_ABSTRACTCONFLICT
00372 //
00373 // MessageText:
00374 //
00375 //  Error reading schema '#1$ls' from XML, abstract setting for  '#2$ls' differs from that of its global element '#3$ls.
00376 //
00377 #define SCHEMA_36_ABSTRACTCONFLICT       0x0000040CL
00378 
00379 //
00380 // MessageId: SCHEMA_37_REQUIREDNODEFEATURE
00381 //
00382 // MessageText:
00383 //
00384 //  Start and end nodes of a network link feature can only be associated to a network node feature
00385 //
00386 #define SCHEMA_37_REQUIREDNODEFEATURE    0x0000040DL
00387 
00388 //
00389 // MessageId: SCHEMA_38_REQUIREDLAYERCLASS
00390 //
00391 // MessageText:
00392 //
00393 //  The layer property can only be associated to a network layer class
00394 //
00395 #define SCHEMA_38_REQUIREDLAYERCLASS     0x0000040EL
00396 
00397 //
00398 // MessageId: SCHEMA_39_REQUIREDNETWORKFCLASS
00399 //
00400 // MessageText:
00401 //
00402 //  The network property can only be associated to a network class
00403 //
00404 #define SCHEMA_39_REQUIREDNETWORKFCLASS  0x0000040FL
00405 
00406 //
00407 // MessageId: SCHEMA_40_REQUIREDNUMERICTYPE
00408 //
00409 // MessageText:
00410 //
00411 //  The cost property type must be numeric.
00412 //
00413 #define SCHEMA_40_REQUIREDNUMERICTYPE    0x00000410L
00414 
00415 //
00416 // MessageId: SCHEMA_41_PARENTCHILDNOTSAMETYPE
00417 //
00418 // MessageText:
00419 //
00420 //  The network feature parent is not the same type as the child.
00421 //
00422 #define SCHEMA_41_PARENTCHILDNOTSAMETYPE 0x00000411L
00423 
00424 //
00425 // MessageId: SCHEMA_42_PARENTCHILDNETWORKNOTSAME
00426 //
00427 // MessageText:
00428 //
00429 //  The network feature parent network class is not the same as the child network class.
00430 //
00431 #define SCHEMA_42_PARENTCHILDNETWORKNOTSAME 0x00000412L
00432 
00433 //
00434 // MessageId: SCHEMA_43_COSTPROPERTYNOTFOUND
00435 //
00436 // MessageText:
00437 //
00438 //  The network feature cost property is not a feature property.
00439 //
00440 #define SCHEMA_43_COSTPROPERTYNOTFOUND   0x00000413L
00441 
00442 //
00443 // MessageId: SCHEMA_44_LINKSTARTORENDNODENETWORKERROR
00444 //
00445 // MessageText:
00446 //
00447 //  The start and end node network class must be the same as the link network class.
00448 //
00449 #define SCHEMA_44_LINKSTARTORENDNODENETWORKERROR 0x00000414L
00450 
00451 //
00452 // MessageId: SCHEMA_45_ASSOCPROPCLASSREF
00453 //
00454 // MessageText:
00455 //
00456 //  Error reading Feature Schemas from XML; class '%1$ls:%2$ls' for association property '%3$ls' not found.
00457 //
00458 #define SCHEMA_45_ASSOCPROPCLASSREF      0x00000415L
00459 
00460 //
00461 // MessageId: SCHEMA_46_ASSOCPROPS
00462 //
00463 // MessageText:
00464 //
00465 //  Error reading Feature Schemas from XML; association property '%1$ls' has no class; cannot resolve its identity property.
00466 //
00467 #define SCHEMA_46_ASSOCPROPS             0x00000416L
00468 
00469 //
00470 // MessageId: SCHEMA_47_ASSOCPROPIDPROPREF
00471 //
00472 // MessageText:
00473 //
00474 //  Error reading Feature Schemas from XML; identity property '%1$ls' for association property '%2$ls' not found.
00475 //
00476 #define SCHEMA_47_ASSOCPROPIDPROPREF     0x00000417L
00477 
00478 //
00479 // MessageId: SCHEMA_48_ASSOCREVERSEPROPCLASSREF
00480 //
00481 // MessageText:
00482 //
00483 //  Error reading Feature Schemas from XML; reverse association property '%1$ls' has no class; cannot resolve its identity property.
00484 //
00485 #define SCHEMA_48_ASSOCREVERSEPROPCLASSREF 0x00000418L
00486 
00487 //
00488 // MessageId: SCHEMA_49_ASSOCREVERSEPROPIDPROPREF
00489 //
00490 // MessageText:
00491 //
00492 //  Error reading Feature Schemas from XML; identity property '%1$ls' for reverse association property '%2$ls' not found.
00493 //
00494 #define SCHEMA_49_ASSOCREVERSEPROPIDPROPREF 0x00000419L
00495 
00496 //
00497 // MessageId: SCHEMA_50_NETWORKLAYERPROPREF
00498 //
00499 // MessageText:
00500 //
00501 //  Error reading Feature Schemas from XML; class '%1$ls:%2$ls' for network layer property '%3$ls' not found.
00502 //
00503 #define SCHEMA_50_NETWORKLAYERPROPREF    0x0000041AL
00504 
00505 //
00506 // MessageId: SCHEMA_51_CLASSNOSCHEMA
00507 //
00508 // MessageText:
00509 //
00510 //  Element '%1$ls' references class (%2$ls) which does not belong to a feature schema.
00511 //
00512 #define SCHEMA_51_CLASSNOSCHEMA          0x0000041BL
00513 
00514 //
00515 // MessageId: SCHEMA_52_BADELEMENTNAME
00516 //
00517 // MessageText:
00518 //
00519 //  Invalid Feature schema element name '%1$ls'; must not contain '%2$c'.
00520 //
00521 #define SCHEMA_52_BADELEMENTNAME         0x0000041CL
00522 
00523 //
00524 // MessageId: SCHEMA_53_BADASSOCREVERSEPROP
00525 //
00526 // MessageText:
00527 //
00528 //  Cannot use auto-generated or system properties as reverse identity properties
00529 //
00530 #define SCHEMA_53_BADASSOCREVERSEPROP    0x0000041DL
00531 
00532 //
00533 // MessageId: SCHEMA_54_AUTOGENREADONLY
00534 //
00535 // MessageText:
00536 //
00537 //  Cannot set autogenerated property '%1$ls' to be not read-only.
00538 //
00539 #define SCHEMA_54_AUTOGENREADONLY        0x0000041EL
00540 
00541 //
00542 // MessageId: SCHEMA_55_ASSOCIATEDCLASSREQUIRED
00543 //
00544 // MessageText:
00545 //
00546 //  Association property '%1$ls' is missing the associated class
00547 //
00548 #define SCHEMA_55_ASSOCIATEDCLASSREQUIRED 0x0000041FL
00549 
00550 //
00551 // MessageId: SCHEMA_56_UNSUPPORTEDXSDGBLELEM
00552 //
00553 // MessageText:
00554 //
00555 //  Error reading schema '#1$ls' from XML, global element #2$ls type must be '#3$ls' when error level is high.
00556 //
00557 #define SCHEMA_56_UNSUPPORTEDXSDGBLELEM  0x00000420L
00558 
00559 //
00560 // MessageId: SCHEMA_57_BADCOMPLEXTYPENAME
00561 //
00562 // MessageText:
00563 //
00564 //  Error reading schema '#1$ls' from XML, complexType #2$ls name must end with 'Type' when error level is high.
00565 //
00566 #define SCHEMA_57_BADCOMPLEXTYPENAME     0x00000421L
00567 
00568 //
00569 // MessageId: SCHEMA_58_UNSUPPORTEDXSDGBLELEM
00570 //
00571 // MessageText:
00572 //
00573 //  Error reading schema '#1$ls' from XML, global element #2$ls type is from a different schema: '#3$ls'.
00574 //
00575 #define SCHEMA_58_UNSUPPORTEDXSDGBLELEM  0x00000422L
00576 
00577 //
00578 // MessageId: SCHEMA_59_SCHEMAFROMPREFIX
00579 //
00580 // MessageText:
00581 //
00582 //  Schema names can only be generated from xmlns prefixes when ErrorLevel is VeryLow.
00583 //
00584 #define SCHEMA_59_SCHEMAFROMPREFIX       0x00000423L
00585 
00586 //
00587 // MessageId: SCHEMA_60_MULTIELEMMAPPING
00588 //
00589 // MessageText:
00590 //
00591 //  Multiple Schema Mappings found for element '%1$ls:%2$ls'.
00592 //
00593 #define SCHEMA_60_MULTIELEMMAPPING       0x00000424L
00594 
00595 //
00596 // MessageId: SCHEMA_61_MULTIELEMMAPPING
00597 //
00598 // MessageText:
00599 //
00600 //  Multiple Schema Mappings found for element '%1$ls:%2$ls.%3$ls'.
00601 //
00602 #define SCHEMA_61_MULTIELEMMAPPING       0x00000425L
00603 
00604 //
00605 // MessageId: SCHEMA_62_NOCLASSMAPPING
00606 //
00607 // MessageText:
00608 //
00609 //  Cannot add element '%1$ls', containing class mapping '%2$ls:%3$ls' not found.
00610 //
00611 #define SCHEMA_62_NOCLASSMAPPING         0x00000426L
00612 
00613 //
00614 // MessageId: SCHEMA_63_MULTICLASSMAPPING
00615 //
00616 // MessageText:
00617 //
00618 //  Multiple Schema Mappings found for class '%1$ls:%2$ls'.
00619 //
00620 #define SCHEMA_63_MULTICLASSMAPPING      0x00000427L
00621 
00622 //
00623 // MessageId: SCHEMA_64_MULTINAMESPACES
00624 //
00625 // MessageText:
00626 //
00627 //  Schema '%1$ls' has multiple targetNamespace values: '%2$ls', '%3$ls'.
00628 //
00629 #define SCHEMA_64_MULTINAMESPACES        0x00000428L
00630 
00631 //
00632 // MessageId: SCHEMA_65_UNICONSPROPREF
00633 //
00634 // MessageText:
00635 //
00636 //  Error reading Feature Schemas from XML; unique constraint property '%1$ls' for feature class '%2$ls' not found.
00637 //
00638 #define SCHEMA_65_UNICONSPROPREF         0x00000429L
00639 
00640 //
00641 // MessageId: EXPRESSION_1_BLOBVALUENULL
00642 //
00643 // MessageText:
00644 //
00645 //  BLOBValue is null.
00646 //
00647 #define EXPRESSION_1_BLOBVALUENULL       0x000007D1L
00648 
00649 //
00650 // MessageId: EXPRESSION_2_BOOLEANVALUENULL
00651 //
00652 // MessageText:
00653 //
00654 //  BooleanValue is null.
00655 //
00656 #define EXPRESSION_2_BOOLEANVALUENULL    0x000007D2L
00657 
00658 //
00659 // MessageId: EXPRESSION_3_BYTEVALUENULL
00660 //
00661 // MessageText:
00662 //
00663 //  ByteValue is null.
00664 //
00665 #define EXPRESSION_3_BYTEVALUENULL       0x000007D3L
00666 
00667 //
00668 // MessageId: EXPRESSION_4_CLOBVALUENULL
00669 //
00670 // MessageText:
00671 //
00672 //  CLOBValue is null.
00673 //
00674 #define EXPRESSION_4_CLOBVALUENULL       0x000007D4L
00675 
00676 //
00677 // MessageId: EXPRESSION_5_DATETIMEVALUENULL
00678 //
00679 // MessageText:
00680 //
00681 //  DateTimeValue is null.
00682 //
00683 #define EXPRESSION_5_DATETIMEVALUENULL   0x000007D5L
00684 
00685 //
00686 // MessageId: EXPRESSION_6_DECIMALVALUENULL
00687 //
00688 // MessageText:
00689 //
00690 //  DecimalValue is null.
00691 //
00692 #define EXPRESSION_6_DECIMALVALUENULL    0x000007D6L
00693 
00694 //
00695 // MessageId: EXPRESSION_7_DOUBLEVALUENULL
00696 //
00697 // MessageText:
00698 //
00699 //  DoubleValue is null.
00700 //
00701 #define EXPRESSION_7_DOUBLEVALUENULL     0x000007D7L
00702 
00703 //
00704 // MessageId: EXPRESSION_8_INCOMPLETEBINARYEXPRESSION
00705 //
00706 // MessageText:
00707 //
00708 //  Incomplete binary expression.
00709 //
00710 #define EXPRESSION_8_INCOMPLETEBINARYEXPRESSION 0x000007D8L
00711 
00712 //
00713 // MessageId: EXPRESSION_9_INCOMPLETEFUNCTION
00714 //
00715 // MessageText:
00716 //
00717 //  Incomplete function.
00718 //
00719 #define EXPRESSION_9_INCOMPLETEFUNCTION  0x000007D9L
00720 
00721 //
00722 // MessageId: EXPRESSION_10_INCOMPLETEPARAMETER
00723 //
00724 // MessageText:
00725 //
00726 //  Incomplete parameter.
00727 //
00728 #define EXPRESSION_10_INCOMPLETEPARAMETER 0x000007DAL
00729 
00730 //
00731 // MessageId: EXPRESSION_11_INCOMPLETEUNARYEXPRESSION
00732 //
00733 // MessageText:
00734 //
00735 //  Incomplete unary expression.
00736 //
00737 #define EXPRESSION_11_INCOMPLETEUNARYEXPRESSION 0x000007DBL
00738 
00739 //
00740 // MessageId: EXPRESSION_12_INT16VALUENULL
00741 //
00742 // MessageText:
00743 //
00744 //  Int16Value is null.
00745 //
00746 #define EXPRESSION_12_INT16VALUENULL     0x000007DCL
00747 
00748 //
00749 // MessageId: EXPRESSION_13_INT32VALUENULL
00750 //
00751 // MessageText:
00752 //
00753 //  Int32Value is null.
00754 //
00755 #define EXPRESSION_13_INT32VALUENULL     0x000007DDL
00756 
00757 //
00758 // MessageId: EXPRESSION_14_INT64VALUENULL
00759 //
00760 // MessageText:
00761 //
00762 //  Int64Value is null.
00763 //
00764 #define EXPRESSION_14_INT64VALUENULL     0x000007DEL
00765 
00766 //
00767 // MessageId: EXPRESSION_15_INVALIDDATAVALUE
00768 //
00769 // MessageText:
00770 //
00771 //  Invalid data type.
00772 //
00773 #define EXPRESSION_15_INVALIDDATAVALUE   0x000007DFL
00774 
00775 //
00776 // MessageId: EXPRESSION_16_NULLIDENTIFIER
00777 //
00778 // MessageText:
00779 //
00780 //  Null identifier.
00781 //
00782 #define EXPRESSION_16_NULLIDENTIFIER     0x000007E0L
00783 
00784 //
00785 // MessageId: EXPRESSION_17_STRINGNOTEXPRESSION
00786 //
00787 // MessageText:
00788 //
00789 //  String does not represent a valid expression.
00790 //
00791 #define EXPRESSION_17_STRINGNOTEXPRESSION 0x000007E1L
00792 
00793 //
00794 // MessageId: EXPRESSION_18_SINGLEVALUENULL
00795 //
00796 // MessageText:
00797 //
00798 //  SingleValue is null.
00799 //
00800 #define EXPRESSION_18_SINGLEVALUENULL    0x000007E2L
00801 
00802 //
00803 // MessageId: EXPRESSION_19_STRINGVALUENULL
00804 //
00805 // MessageText:
00806 //
00807 //  StringValue is null.
00808 //
00809 #define EXPRESSION_19_STRINGVALUENULL    0x000007E3L
00810 
00811 //
00812 // MessageId: EXPRESSION_20_STRINGNOTVALUEEXPRESSION
00813 //
00814 // MessageText:
00815 //
00816 //  String does not represent a valid value expression.
00817 //
00818 #define EXPRESSION_20_STRINGNOTVALUEEXPRESSION 0x000007E4L
00819 
00820 //
00821 // MessageId: FILTER_1_INCOMPLETEBINARYOPERATOR
00822 //
00823 // MessageText:
00824 //
00825 //  Incomplete binary logical operator.
00826 //
00827 #define FILTER_1_INCOMPLETEBINARYOPERATOR 0x00000BB9L
00828 
00829 //
00830 // MessageId: FILTER_2_INCOMPLETECOMPARISONCONDITION
00831 //
00832 // MessageText:
00833 //
00834 //  Incomplete comparison condition.
00835 //
00836 #define FILTER_2_INCOMPLETECOMPARISONCONDITION 0x00000BBAL
00837 
00838 //
00839 // MessageId: FILTER_3_INCOMPLETEDISTANCECONDITION
00840 //
00841 // MessageText:
00842 //
00843 //  Incomplete distance condition.
00844 //
00845 #define FILTER_3_INCOMPLETEDISTANCECONDITION 0x00000BBBL
00846 
00847 //
00848 // MessageId: FILTER_4_INCOMPLETEINCONDITION
00849 //
00850 // MessageText:
00851 //
00852 //  Incomplete in condition.
00853 //
00854 #define FILTER_4_INCOMPLETEINCONDITION   0x00000BBCL
00855 
00856 //
00857 // MessageId: FILTER_5_INCOMPLETENULLCONDITION
00858 //
00859 // MessageText:
00860 //
00861 //  Incomplete null condition.
00862 //
00863 #define FILTER_5_INCOMPLETENULLCONDITION 0x00000BBDL
00864 
00865 //
00866 // MessageId: FILTER_6_INCOMPLETESPATIALCONDITION
00867 //
00868 // MessageText:
00869 //
00870 //  Incomplete spatial condition.
00871 //
00872 #define FILTER_6_INCOMPLETESPATIALCONDITION 0x00000BBEL
00873 
00874 //
00875 // MessageId: FILTER_7_INCOMPLETEUNARYOPERATOR
00876 //
00877 // MessageText:
00878 //
00879 //  Incomplete unary logical operator.
00880 //
00881 #define FILTER_7_INCOMPLETEUNARYOPERATOR 0x00000BBFL
00882 
00883 //
00884 // MessageId: FILTER_8_INVALIDFILTERSTRING
00885 //
00886 // MessageText:
00887 //
00888 //  Invalid filter string.
00889 //
00890 #define FILTER_8_INVALIDFILTERSTRING     0x00000BC0L
00891 
00892 //
00893 // MessageId: FILTER_9_STRINGNOTFILTER
00894 //
00895 // MessageText:
00896 //
00897 //  String does not represent a valid filter.
00898 //
00899 #define FILTER_9_STRINGNOTFILTER         0x00000BC1L
00900 
00901 //
00902 // MessageId: COMMANDS_1_INVALIDIDENTIFIERNAME
00903 //
00904 // MessageText:
00905 //
00906 //  Invalid identifier name '%1$ls'.
00907 //
00908 #define COMMANDS_1_INVALIDIDENTIFIERNAME 0x00000FA1L
00909 
00910 //
00911 // MessageId: COMMANDS_2_INVALIDPARAMETERVALUENAME
00912 //
00913 // MessageText:
00914 //
00915 //  Invalid parameter value name '%1$ls'.
00916 //
00917 #define COMMANDS_2_INVALIDPARAMETERVALUENAME 0x00000FA2L
00918 
00919 //
00920 // MessageId: COMMANDS_3_INVALIDPROPERTYVALUENAME
00921 //
00922 // MessageText:
00923 //
00924 //  Invalid property value name '%1$ls'.
00925 //
00926 #define COMMANDS_3_INVALIDPROPERTYVALUENAME 0x00000FA3L
00927 
00928 //
00929 // MessageId: COMMANDS_4_INVALIDPROVIDERNAME
00930 //
00931 // MessageText:
00932 //
00933 //  Schema Override set for schema '%1$ls' has invalid provider name '%2$ls'; must be of the form: Company.Provider.Version.
00934 //
00935 #define COMMANDS_4_INVALIDPROVIDERNAME   0x00000FA4L
00936 
00937 //
00938 // MessageId: COMMANDS_5_OVERRIDEPROVIDERMISMATCH
00939 //
00940 // MessageText:
00941 //
00942 //  Registered provider '%1$ls' is registered with library for provider '%2$ls'.
00943 //
00944 #define COMMANDS_5_OVERRIDEPROVIDERMISMATCH 0x00000FA5L
00945 
00946 //
00947 // MessageId: COMMANDS_6_MISSINGPROVIDERNAME
00948 //
00949 // MessageText:
00950 //
00951 //  Schema Override set for schema '%1$ls' has no provider name.
00952 //
00953 #define COMMANDS_6_MISSINGPROVIDERNAME   0x00000FA6L
00954 
00955 //
00956 // MessageId: COMMANDS_7_OBJECTHASPARENT
00957 //
00958 // MessageText:
00959 //
00960 //  Schema Override '%1$ls' already has parent.
00961 //
00962 #define COMMANDS_7_OBJECTHASPARENT       0x00000FA7L
00963 
00964 //
00965 // MessageId: COMMANDS_8_BADMAPPINGSUBELEMENT
00966 //
00967 // MessageText:
00968 //
00969 //  Element '%1$ls' not allowed inside %2$ls Schema Mapping element %3$ls[@name='%4$ls'].
00970 //
00971 #define COMMANDS_8_BADMAPPINGSUBELEMENT  0x00000FA8L
00972 
00973 //
00974 // MessageId: COMMANDS_9_MULTIMAPPINGSUBELEMENT
00975 //
00976 // MessageText:
00977 //
00978 //  Multiple instances of Element '%1$ls' not allowed inside %2$ls Schema Mapping element %3$ls[@name='%4$ls'].
00979 //
00980 #define COMMANDS_9_MULTIMAPPINGSUBELEMENT 0x00000FA9L
00981 
00982 //
00983 // MessageId: COMMANDS_10_CHOICESUBELEMENT
00984 //
00985 // MessageText:
00986 //
00987 //  Only one of '%1$ls' allowed inside %2$ls Schema Mapping element %3$ls[@name='%4$ls'].
00988 //
00989 #define COMMANDS_10_CHOICESUBELEMENT     0x00000FAAL
00990 
00991 //
00992 // MessageId: COMMANDS_11_OWNPARENT
00993 //
00994 // MessageText:
00995 //
00996 //  Element '%1$ls' cannot be its own parent/grandparent.
00997 //
00998 #define COMMANDS_11_OWNPARENT            0x00000FABL
00999 
01000 //
01001 // MessageId: COMMANDS_12_DUPLICATESUBELEMENT
01002 //
01003 // MessageText:
01004 //
01005 //  Only one of '%1$ls[@name=%2$ls]' allowed inside %3$ls Schema Mapping element %4$ls[@name='%5$ls'].
01006 //
01007 #define COMMANDS_12_DUPLICATESUBELEMENT  0x00000FACL
01008 
01009 //
01010 // MessageId: PARSE_1_INVALIDDIGIT
01011 //
01012 // MessageText:
01013 //
01014 //  Invalid digit in number.
01015 //
01016 #define PARSE_1_INVALIDDIGIT             0x00001389L
01017 
01018 //
01019 // MessageId: PARSE_2_INVALIDDATETIME
01020 //
01021 // MessageText:
01022 //
01023 //  Invalid DateTime value.
01024 //
01025 #define PARSE_2_INVALIDDATETIME          0x0000138AL
01026 
01027 //
01028 // MessageId: PARSE_3_DATETIMEOUTOFRANGE
01029 //
01030 // MessageText:
01031 //
01032 //  DateTime value out of range.
01033 //
01034 #define PARSE_3_DATETIMEOUTOFRANGE       0x0000138BL
01035 
01036 //
01037 // MessageId: PARSE_4_STRINGINCORRECTLYFORMATTED
01038 //
01039 // MessageText:
01040 //
01041 //  String incorrectly formatted.
01042 //
01043 #define PARSE_4_STRINGINCORRECTLYFORMATTED 0x0000138CL
01044 
01045 //
01046 // MessageId: PARSE_5_STRINGTOOLONG
01047 //
01048 // MessageText:
01049 //
01050 //  String too long.
01051 //
01052 #define PARSE_5_STRINGTOOLONG            0x0000138DL
01053 
01054 //
01055 // MessageId: PARSE_6_MISSINGQUOTE_d
01056 //
01057 // MessageText:
01058 //
01059 //  Unmatched quote following quotation mark at column %1$d.
01060 //
01061 #define PARSE_6_MISSINGQUOTE_d           0x0000138EL
01062 
01063 //
01064 // MessageId: PARSE_7_INVALIDHEXDIGIT
01065 //
01066 // MessageText:
01067 //
01068 //  Invalid hex digit.
01069 //
01070 #define PARSE_7_INVALIDHEXDIGIT          0x0000138FL
01071 
01072 //
01073 // MessageId: PARSE_8_INVALIDBITDIGIT
01074 //
01075 // MessageText:
01076 //
01077 //  Invalid bit digit.
01078 //
01079 #define PARSE_8_INVALIDBITDIGIT          0x00001390L
01080 
01081 //
01082 // MessageId: PARSE_9_WRONGTOKEN
01083 //
01084 // MessageText:
01085 //
01086 //  Wrong token.
01087 //
01088 #define PARSE_9_WRONGTOKEN               0x00001391L
01089 
01090 //
01091 // MessageId: SC_1_XMLNONAME
01092 //
01093 // MessageText:
01094 //
01095 //  Current spatial context has no name; cannot write to XML.
01096 //
01097 #define SC_1_XMLNONAME                   0x00001771L
01098 
01099 //
01100 // MessageId: SC_2_NOSTATETRANSITION
01101 //
01102 // MessageText:
01103 //
01104 //  Error in SCReadHandler state transition table, no transition after element '%1$ls'.
01105 //
01106 #define SC_2_NOSTATETRANSITION           0x00001772L
01107 
01108 //
01109 // MessageId: SC_3_XMLNOEXTENTS
01110 //
01111 // MessageText:
01112 //
01113 //  Current spatial context '%1$ls' has no extents; cannot write to XML.
01114 //
01115 #define SC_3_XMLNOEXTENTS                0x00001773L
01116 
01117 //
01118 // MessageId: SC_4_XMLNOREAD
01119 //
01120 // MessageText:
01121 //
01122 //  %1$ls failed: no spatial context has been read from XML.
01123 //
01124 #define SC_4_XMLNOREAD                   0x00001774L
01125 
01126 //
01127 // MessageId: SC_5_MISSINGATTRIBUTE
01128 //
01129 // MessageText:
01130 //
01131 //  Error reading spatial context %1$ls from XML, required attribute %2$ls/@%3$ls is missing.
01132 //
01133 #define SC_5_MISSINGATTRIBUTE            0x00001775L
01134 
01135 //
01136 // MessageId: SC_6_BADATTRIBUTE
01137 //
01138 // MessageText:
01139 //
01140 //  Error reading spatial context %1$ls from XML, invalid attribute %2$ls/@%3$ls value '%4$ls'.
01141 //
01142 #define SC_6_BADATTRIBUTE                0x00001776L
01143 
01144 //
01145 // MessageId: SC_7_NAMEIDDIFF
01146 //
01147 // MessageText:
01148 //
01149 //  Error reading spatial context %1$ls from XML, gml:id '%2$ls' differs from srsName.
01150 //
01151 #define SC_7_NAMEIDDIFF                  0x00001777L
01152 
01153 //
01154 // MessageId: SC_8_BADELEMENT
01155 //
01156 // MessageText:
01157 //
01158 //  Error reading spatial context %1$ls from XML, invalid %2$ls value '%3$ls'.
01159 //
01160 #define SC_8_BADELEMENT                  0x00001778L
01161 
01162 //
01163 // MessageId: SC_9_BADSUBELEMENT
01164 //
01165 // MessageText:
01166 //
01167 //  Error reading spatial context %1$ls from XML, unexpected first element %2$ls inside '%3$ls'.
01168 //
01169 #define SC_9_BADSUBELEMENT               0x00001779L
01170 
01171 //
01172 // MessageId: SC_10_BADNEXTELEMENT
01173 //
01174 // MessageText:
01175 //
01176 //  Error reading spatial context %1$ls from XML, unexpected element %2$ls after '%3$ls'.
01177 //
01178 #define SC_10_BADNEXTELEMENT             0x0000177AL
01179 
01180 //
01181 // MessageId: SC_11_MISSINGNEXTELEMENT
01182 //
01183 // MessageText:
01184 //
01185 //  Error reading spatial context %1$ls from XML, expected element %2$ls after '%3$ls'.
01186 //
01187 #define SC_11_MISSINGNEXTELEMENT         0x0000177BL
01188 
01189 //
01190 // MessageId: SC_12_EMPTYELEMENT
01191 //
01192 // MessageText:
01193 //
01194 //  Error reading spatial context %1$ls from XML, element %2$ls has no sub-elements.
01195 //
01196 #define SC_12_EMPTYELEMENT               0x0000177CL
01197 
01198 //
01199 // MessageId: SC_13_NAMEIDDIFF
01200 //
01201 // MessageText:
01202 //
01203 //  Error reading spatial context %1$ls from XML, gml:baseCRS/fdo:WKTCRS/gml:id '%2$ls' differs from gml:baseCRS/fdo:WKTCRS/srsName.
01204 //
01205 #define SC_13_NAMEIDDIFF                 0x0000EA6DL
01206 
01207 //
01208 // MessageId: SC_14_EMPTYBASECRS
01209 //
01210 // MessageText:
01211 //
01212 //  Error reading spatial context %1$ls from XML, gml:baseCRS subelement must have an xlink:href attribute or fdo:WKTCRS subelement.
01213 //
01214 #define SC_14_EMPTYBASECRS               0x0000177EL
01215 
01216 //
01217 // MessageId: SC_15_NEEDCALLREADNEXT
01218 //
01219 // MessageText:
01220 //
01221 //  Error reading from feature reader, need to call ReadNext before getting property.
01222 //
01223 #define SC_15_NEEDCALLREADNEXT           0x0000177FL
01224 
01225 //
01226 // MessageId: SC_16_INDEXOUTOFBOUND
01227 //
01228 // MessageText:
01229 //
01230 //  Error reading from feature reader, reach end in the feature collection.
01231 //
01232 #define SC_16_INDEXOUTOFBOUND            0x00001780L
01233 
01234 //
01235 // MessageId: CLNT_1_NULLINPUTPOINTER
01236 //
01237 // MessageText:
01238 //
01239 //  NULL Input Pointer
01240 //
01241 #define CLNT_1_NULLINPUTPOINTER          0x00001B59L
01242 
01243 //
01244 // MessageId: CLNT_2_EMPTYINPUTPARAMETER
01245 //
01246 // MessageText:
01247 //
01248 //  Empty Input Parameter
01249 //
01250 #define CLNT_2_EMPTYINPUTPARAMETER       0x00001B5AL
01251 
01252 //
01253 // MessageId: CLNT_3_NULLPOINTER
01254 //
01255 // MessageText:
01256 //
01257 //  NULL Pointer
01258 //
01259 #define CLNT_3_NULLPOINTER               0x00001B5BL
01260 
01261 //
01262 // MessageId: CLNT_4_PROVIDERNOTREGISTERED
01263 //
01264 // MessageText:
01265 //
01266 //  FDO Provider Not Registered
01267 //
01268 #define CLNT_4_PROVIDERNOTREGISTERED     0x00001B5CL
01269 
01270 //
01271 // MessageId: CLNT_5_OUTOFMEMORY
01272 //
01273 // MessageText:
01274 //
01275 //  Out Of Memory
01276 //
01277 #define CLNT_5_OUTOFMEMORY               0x00001B5DL
01278 
01279 //
01280 // MessageId: CLNT_6_INVALIDINPUTPARAMETER
01281 //
01282 // MessageText:
01283 //
01284 //  Invalid Input Parameter
01285 //
01286 #define CLNT_6_INVALIDINPUTPARAMETER     0x00001B5EL
01287 
01288 //
01289 // MessageId: CLNT_7_FAILURE
01290 //
01291 // MessageText:
01292 //
01293 //  Action Failed
01294 //
01295 #define CLNT_7_FAILURE                   0x00001B5FL
01296 
01297 //
01298 // MessageId: CLNT_8_UNABLE_TO_LOAD_LIBRARY
01299 //
01300 // MessageText:
01301 //
01302 //  Unable to load the FDO Provider: %1$s
01303 //
01304 #define CLNT_8_UNABLE_TO_LOAD_LIBRARY    0x00001B60L
01305 
01306 //
01307 // MessageId: CLNT_9_INVALID_PROVIDER_ENTRY_POINT
01308 //
01309 // MessageText:
01310 //
01311 //  FDO Provider entry point function 'CreateConnection' was not found.
01312 //
01313 #define CLNT_9_INVALID_PROVIDER_ENTRY_POINT 0x00001B61L
01314 
01315 //
01316 // MessageId: CLNT_10_NULL_CONNECTION_FROM_PROVIDER
01317 //
01318 // MessageText:
01319 //
01320 //  FDO Provider entry point function 'CreateConnection' returned NULL.
01321 //
01322 #define CLNT_10_NULL_CONNECTION_FROM_PROVIDER 0x00001B62L
01323 
01324 //
01325 // MessageId: CLNT_11_PARSER_ERROR
01326 //
01327 // MessageText:
01328 //
01329 //  Parser Error
01330 //
01331 #define CLNT_11_PARSER_ERROR             0x00001B63L
01332 
01333 //
01334 // MessageId: CLNT_12_FILE_NOT_EXISTS
01335 //
01336 // MessageText:
01337 //
01338 //  File '%1$ls' does not exist
01339 //
01340 #define CLNT_12_FILE_NOT_EXISTS          0x00001B64L
01341 
01342 //
01343 // MessageId: CLNT_13_UNKNOWN_MESSAGE
01344 //
01345 // MessageText:
01346 //
01347 //  Unknown message id: %1$d
01348 //
01349 #define CLNT_13_UNKNOWN_MESSAGE          0x00001B65L
01350 
01351 //
01352 // MessageId: CLNT_14_XML_ERROR
01353 //
01354 // MessageText:
01355 //
01356 //  Error in registry file '%1$ls', line %2$d: %3$s
01357 //
01358 #define CLNT_14_XML_ERROR                0x00001B66L
01359 
01360 //
01361 // MessageId: CLNT_15_XML_WRITE_ERROR
01362 //
01363 // MessageText:
01364 //
01365 //  Error writing to registry file '%1$ls', %2$s
01366 //
01367 #define CLNT_15_XML_WRITE_ERROR          0x00001B67L
01368 
01369 //
01370 // MessageId: FUNCTION_CEIL
01371 //
01372 // MessageText:
01373 //
01374 //  Returns the smallest integer greater than or equal to the expression value
01375 //
01376 #define FUNCTION_CEIL                    0x00001F41L
01377 
01378 //
01379 // MessageId: FUNCTION_FLOOR
01380 //
01381 // MessageText:
01382 //
01383 //  Returns the largest integer equal to or less than the expression value
01384 //
01385 #define FUNCTION_FLOOR                   0x00001F42L
01386 
01387 //
01388 // MessageId: FUNCTION_AVG
01389 //
01390 // MessageText:
01391 //
01392 //  Returns the average value of an expression
01393 //
01394 #define FUNCTION_AVG                     0x00001F43L
01395 
01396 //
01397 // MessageId: FUNCTION_COUNT
01398 //
01399 // MessageText:
01400 //
01401 //  Returns the number of objects in the query
01402 //
01403 #define FUNCTION_COUNT                   0x00001F44L
01404 
01405 //
01406 // MessageId: FUNCTION_MAX
01407 //
01408 // MessageText:
01409 //
01410 //  Returns the maximum value of an expression
01411 //
01412 #define FUNCTION_MAX                     0x00001F45L
01413 
01414 //
01415 // MessageId: FUNCTION_MIN
01416 //
01417 // MessageText:
01418 //
01419 //  Returns the minimum value of an expression
01420 //
01421 #define FUNCTION_MIN                     0x00001F46L
01422 
01423 //
01424 // MessageId: FUNCTION_SUM
01425 //
01426 // MessageText:
01427 //
01428 //  Returns the sum of values of an expression
01429 //
01430 #define FUNCTION_SUM                     0x00001F47L
01431 
01432 //
01433 // MessageId: FUNCTION_LOWER
01434 //
01435 // MessageText:
01436 //
01437 //  Returns strings with all lowercase letters
01438 //
01439 #define FUNCTION_LOWER                   0x00001F48L
01440 
01441 //
01442 // MessageId: FUNCTION_UPPER
01443 //
01444 // MessageText:
01445 //
01446 //  Returns strings with all letters uppercase
01447 //
01448 #define FUNCTION_UPPER                   0x00001F49L
01449 
01450 //
01451 // MessageId: FUNCTION_CONCAT
01452 //
01453 // MessageText:
01454 //
01455 //  Returns the string concatenation of 2 expressions
01456 //
01457 #define FUNCTION_CONCAT                  0x00001F4AL
01458 
01459 //
01460 // MessageId: FUNCTION_DBL_ARG
01461 //
01462 // MessageText:
01463 //
01464 //  Argument that represents a double
01465 //
01466 #define FUNCTION_DBL_ARG                 0x00001F4BL
01467 
01468 //
01469 // MessageId: FUNCTION_INT_ARG
01470 //
01471 // MessageText:
01472 //
01473 //  Argument that represents an integer
01474 //
01475 #define FUNCTION_INT_ARG                 0x00001F4CL
01476 
01477 //
01478 // MessageId: FUNCTION_STR_ARG
01479 //
01480 // MessageText:
01481 //
01482 //  Argument that represents a string
01483 //
01484 #define FUNCTION_STR_ARG                 0x00001F4DL
01485 
01486 //
01487 // MessageId: FUNCTION_SPATIALEXTENTS
01488 //
01489 // MessageText:
01490 //
01491 //  Returns the spatial extents of values of a geometric expression
01492 //
01493 #define FUNCTION_SPATIALEXTENTS          0x00001F4EL
01494 
01495 //
01496 // MessageId: FUNCTION_GEOM_ARG
01497 //
01498 // MessageText:
01499 //
01500 //  Argument that represents a geometry
01501 //
01502 #define FUNCTION_GEOM_ARG                0x00001F4FL
01503 
01504 //
01505 // MessageId: FDO_1_BADALLOC
01506 //
01507 // MessageText:
01508 //
01509 //  Memory allocation failed.
01510 //
01511 #define FDO_1_BADALLOC                   0x00002329L
01512 
01513 //
01514 // MessageId: FDO_2_BADPARAMETER
01515 //
01516 // MessageText:
01517 //
01518 //  Bad parameter to method.
01519 //
01520 #define FDO_2_BADPARAMETER               0x0000232AL
01521 
01522 //
01523 // MessageId: FDO_3_NOTIMPLEMENTED
01524 //
01525 // MessageText:
01526 //
01527 //  Method is not implemented.
01528 //
01529 #define FDO_3_NOTIMPLEMENTED             0x0000232BL
01530 
01531 //
01532 // MessageId: FDO_4_UNREADY
01533 //
01534 // MessageText:
01535 //
01536 //  Data is not in a state to respond to the request.
01537 //
01538 #define FDO_4_UNREADY                    0x0000232CL
01539 
01540 //
01541 // MessageId: FDO_5_INDEXOUTOFBOUNDS
01542 //
01543 // MessageText:
01544 //
01545 //  Item index out of bounds.
01546 //
01547 #define FDO_5_INDEXOUTOFBOUNDS           0x0000232DL
01548 
01549 //
01550 // MessageId: FDO_6_OBJECTNOTFOUND
01551 //
01552 // MessageText:
01553 //
01554 //  Invalid delete; object not present.
01555 //
01556 #define FDO_6_OBJECTNOTFOUND             0x0000232EL
01557 
01558 //
01559 // MessageId: FDO_7_INVALIDFGF
01560 //
01561 // MessageText:
01562 //
01563 //  String is not a valid FGF string.
01564 //
01565 #define FDO_7_INVALIDFGF                 0x0000232FL
01566 
01567 //
01568 // MessageId: FDO_8_INCORRECTSTRINGFORMAT
01569 //
01570 // MessageText:
01571 //
01572 //  Parse string is incorrectly formatted.
01573 //
01574 #define FDO_8_INCORRECTSTRINGFORMAT      0x00002330L
01575 
01576 //
01577 // MessageId: FDO_9_INVALIDDIGIT
01578 //
01579 // MessageText:
01580 //
01581 //  Invalid digit in number.
01582 //
01583 #define FDO_9_INVALIDDIGIT               0x00002331L
01584 
01585 //
01586 // MessageId: FDO_10_UNSUPPORTEDGEOMETRYTYPE
01587 //
01588 // MessageText:
01589 //
01590 //  Unsupported geometry type.
01591 //
01592 #define FDO_10_UNSUPPORTEDGEOMETRYTYPE   0x00002332L
01593 
01594 //
01595 // MessageId: FDO_11_INVALIDPOINT
01596 //
01597 // MessageText:
01598 //
01599 //  Invalid point.
01600 //
01601 #define FDO_11_INVALIDPOINT              0x00002333L
01602 
01603 //
01604 // MessageId: FDO_12_SHAREDARRAY
01605 //
01606 // MessageText:
01607 //
01608 //  Cannot resize a shared array.
01609 //
01610 #define FDO_12_SHAREDARRAY               0x00002334L
01611 
01612 //
01613 // MessageId: FDO_13_INVALIDRESIZE
01614 //
01615 // MessageText:
01616 //
01617 //  Invalid array resize.
01618 //
01619 #define FDO_13_INVALIDRESIZE             0x00002335L
01620 
01621 //
01622 // MessageId: FDO_14_NULLSTRING
01623 //
01624 // MessageText:
01625 //
01626 //  Null String.
01627 //
01628 #define FDO_14_NULLSTRING                0x00002336L
01629 
01630 //
01631 // MessageId: FDO_15_UNSUPPORTEDGEOMETRYDATA
01632 //
01633 // MessageText:
01634 //
01635 //  Invalid Geometry.
01636 //
01637 #define FDO_15_UNSUPPORTEDGEOMETRYDATA   0x00002337L
01638 
01639 //
01640 // MessageId: FDO_17_UNSUPPORTEDDIMENSIONALITY
01641 //
01642 // MessageText:
01643 //
01644 //  Invalid dimensionality.
01645 //
01646 #define FDO_17_UNSUPPORTEDDIMENSIONALITY 0x00002338L
01647 
01648 //
01649 // MessageId: FDO_18_DATAPROVIDERFAILURE
01650 //
01651 // MessageText:
01652 //
01653 //  OCI failure.
01654 //
01655 #define FDO_18_DATAPROVIDERFAILURE       0x00002339L
01656 
01657 //
01658 // MessageId: FDO_18_FILEOPENFAILURE
01659 //
01660 // MessageText:
01661 //
01662 //  Failed to open file '%1$ls' with access modes: '%2$ls'.
01663 //
01664 #define FDO_18_FILEOPENFAILURE           0x0000233AL
01665 
01666 //
01667 // MessageId: FDO_19_STREAMREADERROR
01668 //
01669 // MessageText:
01670 //
01671 //  Cannot read %1$d bytes from unreadable stream.
01672 //
01673 #define FDO_19_STREAMREADERROR           0x0000233BL
01674 
01675 //
01676 // MessageId: FDO_20_STREAMWRITEERROR
01677 //
01678 // MessageText:
01679 //
01680 //  Cannot write %1$d bytes to unwritable stream.
01681 //
01682 #define FDO_20_STREAMWRITEERROR          0x0000233CL
01683 
01684 //
01685 // MessageId: FDO_21_STREAMWRITEERROR
01686 //
01687 // MessageText:
01688 //
01689 //  Cannot write %1$d bytes to writable stream, only %2$d bytes were written.
01690 //
01691 #define FDO_21_STREAMWRITEERROR          0x0000233DL
01692 
01693 //
01694 // MessageId: FDO_22_STREAMSEEKERROR
01695 //
01696 // MessageText:
01697 //
01698 //  Cannot seek on non-seekable stream.
01699 //
01700 #define FDO_22_STREAMSEEKERROR           0x0000233EL
01701 
01702 //
01703 // MessageId: FDO_23_STREAMSEEKFAILURE
01704 //
01705 // MessageText:
01706 //
01707 //  Seek on stream failed.
01708 //
01709 #define FDO_23_STREAMSEEKFAILURE         0x0000233FL
01710 
01711 //
01712 // MessageId: FDO_24_STREAMBADFP
01713 //
01714 // MessageText:
01715 //
01716 //  Cannot create FdoIoFileStream, bad file pointer.
01717 //
01718 #define FDO_24_STREAMBADFP               0x00002340L
01719 
01720 //
01721 // MessageId: FDO_25_STREAMSIZEFAILURE
01722 //
01723 // MessageText:
01724 //
01725 //  Setting length of stream to %1$d bytes failed.
01726 //
01727 #define FDO_25_STREAMSIZEFAILURE         0x00002341L
01728 
01729 //
01730 // MessageId: FDO_26_BUFFEROVERWRITEERROR
01731 //
01732 // MessageText:
01733 //
01734 //  Cannot write %1$lld bytes to buffer with %2$lld bytes remaining.
01735 //
01736 #define FDO_26_BUFFEROVERWRITEERROR      0x00002342L
01737 
01738 //
01739 // MessageId: FDO_27_BUFFERLENGTHERROR
01740 //
01741 // MessageText:
01742 //
01743 //  Cannot change length of fixed buffer stream.
01744 //
01745 #define FDO_27_BUFFERLENGTHERROR         0x00002343L
01746 
01747 //
01748 // MessageId: FDO_28_UTF8FAILURE
01749 //
01750 // MessageText:
01751 //
01752 //  Unicode to UTF8 conversion failed for string '%1$ls'.
01753 //
01754 #define FDO_28_UTF8FAILURE               0x00002344L
01755 
01756 //
01757 // MessageId: FDO_29_UNICODEFAILURE
01758 //
01759 // MessageText:
01760 //
01761 //  UTF8 to Unicode conversion failed for string '%1$s'.
01762 //
01763 #define FDO_29_UNICODEFAILURE            0x00002345L
01764 
01765 //
01766 // MessageId: FDO_30_BADPARAM
01767 //
01768 // MessageText:
01769 //
01770 //  Bad %1$ls value '%2$ls' passed to %3$ls.
01771 //
01772 #define FDO_30_BADPARAM                  0x00002346L
01773 
01774 //
01775 // MessageId: FDO_31_ENDELEMENTERROR
01776 //
01777 // MessageText:
01778 //
01779 //  FdoXmlWriter::EndElement: there is no current element to end.
01780 //
01781 #define FDO_31_ENDELEMENTERROR           0x00002347L
01782 
01783 //
01784 // MessageId: FDO_32_XMLATTRIBUTEERROR
01785 //
01786 // MessageText:
01787 //
01788 //  Cannot add attribute %1$ls; tag for element %2$ls is no longer open.
01789 //
01790 #define FDO_32_XMLATTRIBUTEERROR         0x00002348L
01791 
01792 //
01793 // MessageId: FDO_33_XMLPARSEERROR
01794 //
01795 // MessageText:
01796 //
01797 //  XML Document parse error at line %1$d column %2$d: %3$ls
01798 //
01799 #define FDO_33_XMLPARSEERROR             0x00002349L
01800 
01801 //
01802 // MessageId: FDO_34_MEMORYSTREAMOVERFLOW
01803 //
01804 // MessageText:
01805 //
01806 //  %1$ls: Maximum length for a %2$ls exceeded, please increase buffer size (currently %3$d)
01807 //
01808 #define FDO_34_MEMORYSTREAMOVERFLOW      0x0000234AL
01809 
01810 //
01811 // MessageId: FDO_35_FILENOCONTEXT
01812 //
01813 // MessageText:
01814 //
01815 //  Stream is not contextual (has no absolute position); %1$ls::%2$ls cannot be called
01816 //
01817 #define FDO_35_FILENOCONTEXT             0x0000234BL
01818 
01819 //
01820 // MessageId: FDO_36_STREAMINDEXALIGN
01821 //
01822 // MessageText:
01823 //
01824 //  %1$ls::%2$ls cannot be called when file size exceeds %3$d bytes (current size: %4$d bytes)
01825 //
01826 #define FDO_36_STREAMINDEXALIGN          0x0000234CL
01827 
01828 //
01829 // MessageId: FDO_37_FILEFLUSH
01830 //
01831 // MessageText:
01832 //
01833 //  %1$ls: failed to flush file
01834 //
01835 #define FDO_37_FILEFLUSH                 0x0000234DL
01836 
01837 //
01838 // MessageId: FDO_38_ITEMNOTFOUND
01839 //
01840 // MessageText:
01841 //
01842 //  Item '%1$ls' not found in collection
01843 //
01844 #define FDO_38_ITEMNOTFOUND              0x0000234EL
01845 
01846 //
01847 // MessageId: FDO_39_STACKPOP
01848 //
01849 // MessageText:
01850 //
01851 //  Stack is empty, cannot pop.
01852 //
01853 #define FDO_39_STACKPOP                  0x0000234FL
01854 
01855 //
01856 // MessageId: FDO_40_BADXMLELEMENT
01857 //
01858 // MessageText:
01859 //
01860 //  Element '%1$ls' is not a valid XML 1.0 element name.
01861 //
01862 #define FDO_40_BADXMLELEMENT             0x00002350L
01863 
01864 //
01865 // MessageId: FDO_41_BADXMLATTRIBUTE
01866 //
01867 // MessageText:
01868 //
01869 //  Attribute '%1$ls' is not a valid XML 1.0 attribute name.
01870 //
01871 #define FDO_41_BADXMLATTRIBUTE           0x00002351L
01872 
01873 //
01874 // MessageId: FDO_42_GENERICCHAR
01875 //
01876 // MessageText:
01877 //
01878 //  %1$ls
01879 //
01880 #define FDO_42_GENERICCHAR               0x00002352L
01881 
01882 //
01883 // MessageId: FDO_43_XSLERROR
01884 //
01885 // MessageText:
01886 //
01887 //  XSL Error at line %1$d column %2$d: %3$ls.
01888 //
01889 #define FDO_43_XSLERROR                  0x00002353L
01890 
01891 //
01892 // MessageId: FDO_44_BADDEFAULTROOT
01893 //
01894 // MessageText:
01895 //
01896 //  Cannot change default root setting for FdoXmlWriter; root element has already been written.
01897 //
01898 #define FDO_44_BADDEFAULTROOT            0x00002354L
01899 
01900 //
01901 // MessageId: FDO_45_ITEMINCOLLECTION
01902 //
01903 // MessageText:
01904 //
01905 //  Item %1$ls is already in this named collection.
01906 //
01907 #define FDO_45_ITEMINCOLLECTION          0x00002355L
01908 
01909 //
01910 // MessageId: FDO_46_REMAININGSTREAMSIZE
01911 //
01912 // MessageText:
01913 //
01914 //  %1$ls: Cannot read remainder of stream, there are more than %$2d items remaining.
01915 //
01916 #define FDO_46_REMAININGSTREAMSIZE       0x00002356L
01917 
01918 //
01919 // MessageId: FDO_47_READARRAYSIZE
01920 //
01921 // MessageText:
01922 //
01923 //  %1$ls: FdoArray is too small to read %2$d items from stream.
01924 //
01925 #define FDO_47_READARRAYSIZE             0x00002357L
01926 
01927 //
01928 // MessageId: FDO_48_NOCONTENTELEMENT
01929 //
01930 // MessageText:
01931 //
01932 //  %1$ls called when there is no open element; content is '%2$ls'.
01933 //
01934 #define FDO_48_NOCONTENTELEMENT          0x00002358L
01935 
01936 //
01937 // MessageId: FDO_49_MULTIROOTELEMENT
01938 //
01939 // MessageText:
01940 //
01941 //  %1$ls: cannot write second root element '%2$ls' to XML document.
01942 //
01943 #define FDO_49_MULTIROOTELEMENT          0x00002359L
01944 
01945 //
01946 // MessageId: FDO_50_XMLTRANSCODEFAILED
01947 //
01948 // MessageText:
01949 //
01950 //  %1$ls: %2$ls failed.
01951 //
01952 #define FDO_50_XMLTRANSCODEFAILED        0x0000235AL
01953 
01954 //
01955 // MessageId: FDO_51_SETFILESIZE
01956 //
01957 // MessageText:
01958 //
01959 //  Cannot change file size to %1$d Windows; maximum is %2$d
01960 //
01961 #define FDO_51_SETFILESIZE               0x0000235BL
01962 
01963 //
01964 // MessageId: FDO_52_BADSUBELEMENT
01965 //
01966 // MessageText:
01967 //
01968 //  Error reading from XML, unexpected element %1$ls inside '%2$ls'.
01969 //
01970 #define FDO_52_BADSUBELEMENT             0x0000235CL
01971 
01972 //
01973 // MessageId: FDO_53_NESTEDXMLPARSEERROR
01974 //
01975 // MessageText:
01976 //
01977 //  Nested call to FdoXmlReader::Parse() attempted.
01978 //
01979 #define FDO_53_NESTEDXMLPARSEERROR       0x0000235DL
01980 
01981 //
01982 // MessageId: FDO_54_XMLINPUTEOF
01983 //
01984 // MessageText:
01985 //
01986 //  Cannot parse XML document whose stream is at end-of-file.
01987 //
01988 #define FDO_54_XMLINPUTEOF               0x0000235EL
01989 
01990 //
01991 // MessageId: FDO_55_XSLINPUTEOF
01992 //
01993 // MessageText:
01994 //
01995 //  Cannot XSL Transform XML document whose stream is at end-of-file.
01996 //
01997 #define FDO_55_XSLINPUTEOF               0x0000235FL
01998 
01999 //
02000 // MessageId: FDO_56_XSLSTYLESHEETEOF
02001 //
02002 // MessageText:
02003 //
02004 //  Cannot read XSL stylesheet whose stream is at end-of-file.
02005 //
02006 #define FDO_56_XSLSTYLESHEETEOF          0x00002360L
02007 
02008 //
02009 // MessageId: FDO_57_UNEXPECTEDERROR
02010 //
02011 // MessageText:
02012 //
02013 //  Unexpected error encountered.
02014 //
02015 #define FDO_57_UNEXPECTEDERROR           0x00002361L
02016 
02017 //
02018 // MessageId: FDO_58_READERHASNODATA
02019 //
02020 // MessageText:
02021 //
02022 //  End of reader data or ReadNext not called.
02023 //
02024 #define FDO_58_READERHASNODATA           0x00002362L
02025 
02026 //
02027 // MessageId: FDO_59_CANNOTFETCHNULLVALUE
02028 //
02029 // MessageText:
02030 //
02031 //  Cannot fetch NULL value.
02032 //
02033 #define FDO_59_CANNOTFETCHNULLVALUE      0x00002363L
02034 
02035 //
02036 // MessageId: FDO_60_NULL_POINTER
02037 //
02038 // MessageText:
02039 //
02040 //  Unexpected NULL pointer.
02041 //
02042 #define FDO_60_NULL_POINTER              0x00002364L
02043 
02044 //
02045 // MessageId: FDO_61_NULL_ARGUMENT
02046 //
02047 // MessageText:
02048 //
02049 //  A required argument was set to NULL.
02050 //
02051 #define FDO_61_NULL_ARGUMENT             0x00002365L
02052 
02053 //
02054 // MessageId: FDO_62_PROPERTYVALUEFETCHTYPEMISMATCH
02055 //
02056 // MessageText:
02057 //
02058 //  Fetching a property value did not match the property type.
02059 //
02060 #define FDO_62_PROPERTYVALUEFETCHTYPEMISMATCH 0x00002366L
02061 
02062 //
02063 // MessageId: FDO_63_CONNECTION_INVALID
02064 //
02065 // MessageText:
02066 //
02067 //  Connection is invalid.
02068 //
02069 #define FDO_63_CONNECTION_INVALID        0x00002367L
02070 
02071 //
02072 // MessageId: FDO_64_CONNECTION_REQUIRED_PROPERTY_NULL
02073 //
02074 // MessageText:
02075 //
02076 //  The required property '%1$ls' cannot be set to NULL.
02077 //
02078 #define FDO_64_CONNECTION_REQUIRED_PROPERTY_NULL 0x00002368L
02079 
02080 //
02081 // MessageId: FDO_65_CONNECTION_ENUM_PROPERTY_WRONG_VALUE
02082 //
02083 // MessageText:
02084 //
02085 //  The given value '%1$ls' for enumerable property '%2$ls' is not in the enumeration value collection.
02086 //
02087 #define FDO_65_CONNECTION_ENUM_PROPERTY_WRONG_VALUE 0x00002369L
02088 
02089 //
02090 // MessageId: FDO_66_CONNECTION_PROPERTY_NOT_FOUND
02091 //
02092 // MessageText:
02093 //
02094 //  The connection property '%1$ls' was not found.
02095 //
02096 #define FDO_66_CONNECTION_PROPERTY_NOT_FOUND 0x0000236AL
02097 
02098 //
02099 // MessageId: FDO_67_CONNECTION_TIMEOUT_NOT_SUPPORTED
02100 //
02101 // MessageText:
02102 //
02103 //  Connection timeout is not supported.
02104 //
02105 #define FDO_67_CONNECTION_TIMEOUT_NOT_SUPPORTED 0x0000236BL
02106 
02107 //
02108 // MessageId: FDO_68_COMMAND_PARAMETERS_NOT_SUPPORTED
02109 //
02110 // MessageText:
02111 //
02112 //  Command parameters are not supported.
02113 //
02114 #define FDO_68_COMMAND_PARAMETERS_NOT_SUPPORTED 0x0000236CL
02115 
02116 //
02117 // MessageId: FDO_69_PROPERTY_NOT_AVAILABLE
02118 //
02119 // MessageText:
02120 //
02121 //  The requested property is not available.
02122 //
02123 #define FDO_69_PROPERTY_NOT_AVAILABLE    0x0000236DL
02124 
02125 //
02126 // MessageId: FDO_70_PROPERTY_TYPE_NOT_SUPPORTED
02127 //
02128 // MessageText:
02129 //
02130 //  The property type '%1$ls' is not supported by this provider.
02131 //
02132 #define FDO_70_PROPERTY_TYPE_NOT_SUPPORTED 0x0000236EL
02133 
02134 //
02135 // MessageId: FDO_71_DATA_TYPE_NOT_SUPPORTED
02136 //
02137 // MessageText:
02138 //
02139 //  The data type '%1$ls' is not supported by this provider.
02140 //
02141 #define FDO_71_DATA_TYPE_NOT_SUPPORTED   0x0000236FL
02142 
02143 //
02144 // MessageId: FDO_72_LOB_DATA_TYPE_NOT_SUPPORTED
02145 //
02146 // MessageText:
02147 //
02148 //  The BLOB and CLOB data types are not supported by this provider.
02149 //
02150 #define FDO_72_LOB_DATA_TYPE_NOT_SUPPORTED 0x00002370L
02151 
02152 //
02153 // MessageId: FDO_73_PROPERTY_INDEXOUTOFBOUNDS
02154 //
02155 // MessageText:
02156 //
02157 //  Property index '%1$d' is out of bounds.
02158 //
02159 #define FDO_73_PROPERTY_INDEXOUTOFBOUNDS 0x00002371L
02160 
02161 //
02162 // MessageId: FDO_74_PROPERTY_NAME_NOT_FOUND
02163 //
02164 // MessageText:
02165 //
02166 //  The property '%1$ls' was not found.
02167 //
02168 #define FDO_74_PROPERTY_NAME_NOT_FOUND   0x00002372L
02169 
02170 //
02171 // MessageId: FDO_75_INVALID_NUM_ARGUMENTS
02172 //
02173 // MessageText:
02174 //
02175 //  Invalid number of arguments to function '%1$ls'; expected %2$d argument(s), got %3$d instead.
02176 //
02177 #define FDO_75_INVALID_NUM_ARGUMENTS     0x00002373L
02178 
02179 //
02180 // MessageId: FDO_76_CLASS_NAME_NOT_FOUND
02181 //
02182 // MessageText:
02183 //
02184 //  The class '%1$ls' was not found.
02185 //
02186 #define FDO_76_CLASS_NAME_NOT_FOUND      0x00002374L
02187 
02188 //
02189 // MessageId: FDO_77_ORDERBY_INVALID_TYPE
02190 //
02191 // MessageText:
02192 //
02193 //  The data type '%1$ls' cannot be used with Order By.
02194 //
02195 #define FDO_77_ORDERBY_INVALID_TYPE      0x00002375L
02196 
02197 //
02198 // MessageId: FDO_78_AGGREGATE_IN_AGGREGATE_FUNCTION
02199 //
02200 // MessageText:
02201 //
02202 //  Aggregate functions cannot contain aggregate functions as their arguments.
02203 //
02204 #define FDO_78_AGGREGATE_IN_AGGREGATE_FUNCTION 0x00002376L
02205 
02206 //
02207 // MessageId: FDO_79_AGGREGATE_INVALID_MIX
02208 //
02209 // MessageText:
02210 //
02211 //  Invalid combination of aggregate functions and non-aggregate expressions.
02212 //
02213 #define FDO_79_AGGREGATE_INVALID_MIX     0x00002377L
02214 
02215 //
02216 // MessageId: FDO_80_INVALID_EXPRESSION
02217 //
02218 // MessageText:
02219 //
02220 //  Invalid expression; expression types incompatible.
02221 //
02222 #define FDO_80_INVALID_EXPRESSION        0x00002378L
02223 
02224 //
02225 // MessageId: FDO_81_IDENTIFIER_NOT_FOUND
02226 //
02227 // MessageText:
02228 //
02229 //  The identifier '%1$ls' was not recognized.
02230 //
02231 #define FDO_81_IDENTIFIER_NOT_FOUND      0x00002379L
02232 
02233 //
02234 // MessageId: FDO_82_UNSUPPORTED_LOGICAL_OPERATION
02235 //
02236 // MessageText:
02237 //
02238 //  Unsupported FDO logical operation.
02239 //
02240 #define FDO_82_UNSUPPORTED_LOGICAL_OPERATION 0x0000237AL
02241 
02242 //
02243 // MessageId: FDO_83_UNSUPPORTED_COMPARISON_OPERATION
02244 //
02245 // MessageText:
02246 //
02247 //  Unsupported FDO comparison operation.
02248 //
02249 #define FDO_83_UNSUPPORTED_COMPARISON_OPERATION 0x0000237BL
02250 
02251 //
02252 // MessageId: FDO_84_SPATIAL_CONDITION_NOT_LITERAL_GEOMETRY
02253 //
02254 // MessageText:
02255 //
02256 //  Only literal geometric values are allowed in spatial conditions.
02257 //
02258 #define FDO_84_SPATIAL_CONDITION_NOT_LITERAL_GEOMETRY 0x0000237CL
02259 
02260 //
02261 // MessageId: FDO_85_DISTANCE_SPATIAL_CONDITION_NOT_SUPPORTED
02262 //
02263 // MessageText:
02264 //
02265 //  The Distance spatial condition is not supported by this provider.
02266 //
02267 #define FDO_85_DISTANCE_SPATIAL_CONDITION_NOT_SUPPORTED 0x0000237DL
02268 
02269 //
02270 // MessageId: FDO_86_UNSUPPORTED_BINARY_OPERATION
02271 //
02272 // MessageText:
02273 //
02274 //  Unsupported FDO binary operation.
02275 //
02276 #define FDO_86_UNSUPPORTED_BINARY_OPERATION 0x0000237EL
02277 
02278 //
02279 // MessageId: FDO_87_UNSUPPORTED_UNARY_OPERATION
02280 //
02281 // MessageText:
02282 //
02283 //  Unsupported FDO unary operation.
02284 //
02285 #define FDO_87_UNSUPPORTED_UNARY_OPERATION 0x0000237FL
02286 
02287 //
02288 // MessageId: FDO_88_INVALID_FUNCTION_ARG_TYPE
02289 //
02290 // MessageText:
02291 //
02292 //  Argument number %1$d to function '%2$ls' was of type '%3$ls', expected type '%4$ls'.
02293 //
02294 #define FDO_88_INVALID_FUNCTION_ARG_TYPE 0x00002380L
02295 
02296 //
02297 // MessageId: FDO_89_UNSUPPORTED_FUNCTION
02298 //
02299 // MessageText:
02300 //
02301 //  The function '%1$ls' is not supported by this provider.
02302 //
02303 #define FDO_89_UNSUPPORTED_FUNCTION      0x00002381L
02304 
02305 //
02306 // MessageId: FDO_90_GEOMETRY_VALUES_IN_FILTER_UNSUPPORTED
02307 //
02308 // MessageText:
02309 //
02310 //  Geometry values in filters are not supported by this provider.
02311 //
02312 #define FDO_90_GEOMETRY_VALUES_IN_FILTER_UNSUPPORTED 0x00002382L
02313 
02314 //
02315 // MessageId: FDO_91_FILE_NOT_FOUND
02316 //
02317 // MessageText:
02318 //
02319 //  The file '%1$ls' was not found.
02320 //
02321 #define FDO_91_FILE_NOT_FOUND            0x00002383L
02322 
02323 //
02324 // MessageId: FDO_92_PATH_NOT_FOUND
02325 //
02326 // MessageText:
02327 //
02328 //  The path to file '%1$ls' was not found.
02329 //
02330 #define FDO_92_PATH_NOT_FOUND            0x00002384L
02331 
02332 //
02333 // MessageId: FDO_93_TOO_MANY_OPEN_FILES
02334 //
02335 // MessageText:
02336 //
02337 //  Already too many open files when opening file '%1$ls'.
02338 //
02339 #define FDO_93_TOO_MANY_OPEN_FILES       0x00002385L
02340 
02341 //
02342 // MessageId: FDO_94_ACCESS_DENIED
02343 //
02344 // MessageText:
02345 //
02346 //  Access to file '%1$ls' was denied.
02347 //
02348 #define FDO_94_ACCESS_DENIED             0x00002386L
02349 
02350 //
02351 // MessageId: FDO_95_FILE_IO_ERROR
02352 //
02353 // MessageText:
02354 //
02355 //  File '%1$ls' I/O error in context '%2$ls': %3$ls
02356 //
02357 #define FDO_95_FILE_IO_ERROR             0x00002387L
02358 
02359 //
02360 // MessageId: FDO_96_READ_ONLY
02361 //
02362 // MessageText:
02363 //
02364 //  Location for file '%1$ls' is read-only.
02365 //
02366 #define FDO_96_READ_ONLY                 0x00002388L
02367 
02368 //
02369 // MessageId: FDO_97_CANNOT_SET_READONLY_PROPERTY
02370 //
02371 // MessageText:
02372 //
02373 //  Property '%1$ls' cannot be set because it is read-only.
02374 //
02375 #define FDO_97_CANNOT_SET_READONLY_PROPERTY 0x00002389L
02376 
02377 //
02378 // MessageId: FDO_98_MISSING_DEFAULT_VALUE
02379 //
02380 // MessageText:
02381 //
02382 //  Read-only property '%1$ls' requires a default value.
02383 //
02384 #define FDO_98_MISSING_DEFAULT_VALUE     0x0000238AL
02385 
02386 //
02387 // MessageId: FDO_99_CANNOT_DEFAULT_READONLY_PROPERTY
02388 //
02389 // MessageText:
02390 //
02391 //  Read-only identity property '%1$ls' cannot have a default value.
02392 //
02393 #define FDO_99_CANNOT_DEFAULT_READONLY_PROPERTY 0x0000238BL
02394 
02395 //
02396 // MessageId: FDO_100_COMMAND_TIMEOUT_NOT_SUPPORTED
02397 //
02398 // MessageText:
02399 //
02400 //  Command timeout is not supported.
02401 //
02402 #define FDO_100_COMMAND_TIMEOUT_NOT_SUPPORTED 0x0000238CL
02403 
02404 //
02405 // MessageId: FDO_101_TRANSACTIONS_NOT_SUPPORTED
02406 //
02407 // MessageText:
02408 //
02409 //  Transactions are not supported.
02410 //
02411 #define FDO_101_TRANSACTIONS_NOT_SUPPORTED 0x0000238DL
02412 
02413 //
02414 // MessageId: FDO_102_COMMAND_NOT_SUPPORTED
02415 //
02416 // MessageText:
02417 //
02418 //  The command '%1$ls' is not supported.
02419 //
02420 #define FDO_102_COMMAND_NOT_SUPPORTED    0x0000238EL
02421 
02422 //
02423 // MessageId: FDO_103_CONNECTION_ALREADY_OPEN
02424 //
02425 // MessageText:
02426 //
02427 //  The connection is already open.
02428 //
02429 #define FDO_103_CONNECTION_ALREADY_OPEN  0x0000238FL
02430 
02431 //
02432 // MessageId: FDO_104_READER_PROPERTY_NOT_SELECTED
02433 //
02434 // MessageText:
02435 //
02436 //  The property '%1$ls' is not in the reader's selected property set.
02437 //
02438 #define FDO_104_READER_PROPERTY_NOT_SELECTED 0x00002390L
02439 
02440 //
02441 // MessageId: FDO_105_UNSUPPORTED_SPATIAL_OPERATION
02442 //
02443 // MessageText:
02444 //
02445 //  Unsupported FDO spatial operation.
02446 //
02447 #define FDO_105_UNSUPPORTED_SPATIAL_OPERATION 0x00002391L
02448 
02449 //
02450 // MessageId: FDO_106_LOB_NOT_SUPPORTED_IN_FILTER
02451 //
02452 // MessageText:
02453 //
02454 //  LOB objects not supported in the FDO Filter.
02455 //
02456 #define FDO_106_LOB_NOT_SUPPORTED_IN_FILTER 0x00002392L
02457 
02458 //
02459 // MessageId: FDO_107_PARAEMETRS_NOT_SUPPORTED_IN_FILTER
02460 //
02461 // MessageText:
02462 //
02463 //  Parameters not supported in the FDO Filter.
02464 //
02465 #define FDO_107_PARAEMETRS_NOT_SUPPORTED_IN_FILTER 0x00002393L
02466 
02467 //
02468 // MessageId: FDO_108_INVALID_FDO_IN_CONDITION
02469 //
02470 // MessageText:
02471 //
02472 //  Invalid FDO In condition.
02473 //
02474 #define FDO_108_INVALID_FDO_IN_CONDITION 0x00002394L
02475 
02476 //
02477 // MessageId: FDO_109_INVALID_FDO_COMPARISON_CONDITION
02478 //
02479 // MessageText:
02480 //
02481 //  Invalid FDO In condition.
02482 //
02483 #define FDO_109_INVALID_FDO_COMPARISON_CONDITION 0x00002395L
02484 
02485 //
02486 // MessageId: FDO_110_PROPERTY_NOT_NULLABLE
02487 //
02488 // MessageText:
02489 //
02490 //  The property '%1$ls' cannot be set to NULL.
02491 //
02492 #define FDO_110_PROPERTY_NOT_NULLABLE    0x00002396L
02493 
02494 //
02495 // MessageId: FDO_111_PROPERTY_RANGE_CONSTRAINT_VIOLATED
02496 //
02497 // MessageText:
02498 //
02499 //  The property '%1$ls' range constraint (%2$ls) is violated by value %3$ls.
02500 //
02501 #define FDO_111_PROPERTY_RANGE_CONSTRAINT_VIOLATED 0x00002397L
02502 
02503 //
02504 // MessageId: FDO_112_PROPERTY_LIST_CONSTRAINT_VIOLATED
02505 //
02506 // MessageText:
02507 //
02508 //  The property '%1$ls' list constraint (%2$ls) is violated by value %3$ls.
02509 //
02510 #define FDO_112_PROPERTY_LIST_CONSTRAINT_VIOLATED 0x00002398L
02511 
02512 //
02513 // MessageId: FDO_113_PROPERTY_UNKNOWN_CONSTRAINT_VIOLATED
02514 //
02515 // MessageText:
02516 //
02517 //  The property '%1$ls' unknown constraint is violated by value %2$ls.
02518 //
02519 #define FDO_113_PROPERTY_UNKNOWN_CONSTRAINT_VIOLATED 0x00002399L
02520 
02521 //
02522 // MessageId: FDO_114_XSL_LOG_ERROR
02523 //
02524 // MessageText:
02525 //
02526 //  ERROR
02527 //
02528 #define FDO_114_XSL_LOG_ERROR            0x0000239AL
02529 
02530 //
02531 // MessageId: FDO_115_XSL_LOG_WARNING
02532 //
02533 // MessageText:
02534 //
02535 //  WARNING
02536 //
02537 #define FDO_115_XSL_LOG_WARNING          0x0000239BL
02538 
02539 //
02540 // MessageId: FDO_116_XSL_LOG_MESSAGE
02541 //
02542 // MessageText:
02543 //
02544 //  MESSAGE
02545 //
02546 #define FDO_116_XSL_LOG_MESSAGE          0x0000239CL
02547 
02548 //
02549 // MessageId: FDO_117_XSL_LOG_ORIGINATOR_XMLPARSER
02550 //
02551 // MessageText:
02552 //
02553 //  XML Parser
02554 //
02555 #define FDO_117_XSL_LOG_ORIGINATOR_XMLPARSER 0x0000239DL
02556 
02557 //
02558 // MessageId: FDO_118_XSL_LOG_ORIGINATOR_XSLPROCESSOR
02559 //
02560 // MessageText:
02561 //
02562 //  XSL Processor
02563 //
02564 #define FDO_118_XSL_LOG_ORIGINATOR_XSLPROCESSOR 0x0000239EL
02565 
02566 //
02567 // MessageId: FDO_119_XSL_LOG_ORIGINATOR_XPATH
02568 //
02569 // MessageText:
02570 //
02571 //  XPath
02572 //
02573 #define FDO_119_XSL_LOG_ORIGINATOR_XPATH 0x0000239FL
02574 
02575 //
02576 // MessageId: FDO_120_XSL_LOG_ORIGINATOR_UNKNOWN
02577 //
02578 // MessageText:
02579 //
02580 //  Unknown originator
02581 //
02582 #define FDO_120_XSL_LOG_ORIGINATOR_UNKNOWN 0x000023A0L
02583 
02584 //
02585 // MessageId: FDO_121_XSL_ATSOURCENODE
02586 //
02587 // MessageText:
02588 //
02589 //  At source node '%1$ls'
02590 //
02591 #define FDO_121_XSL_ATSOURCENODE         0x000023A1L
02592 
02593 //
02594 // MessageId: FDO_122_XSL_ATURI
02595 //
02596 // MessageText:
02597 //
02598 //  at URI '%1$ls' (line %2$d, column %3$d)
02599 //
02600 #define FDO_122_XSL_ATURI                0x000023A2L
02601 
02602 //
02603 // MessageId: FDO_123_NOATTRIBUTEELEMENT
02604 //
02605 // MessageText:
02606 //
02607 //  %1$ls called when there is no open element; cannot write attribute '%2$ls'.
02608 //
02609 #define FDO_123_NOATTRIBUTEELEMENT       0x000023A3L
02610 
02611 //
02612 // MessageId: FDO_124_BYTESAFTERCLOSE
02613 //
02614 // MessageText:
02615 //
02616 //  %1$ls called after document closed; cannot write bytes.
02617 //
02618 #define FDO_124_BYTESAFTERCLOSE          0x000023A4L
02619 
02620 //
02621 // MessageId: FDO_125_SCHEMA_ALREADY_EXISTS
02622 //
02623 // MessageText:
02624 //
02625 //  The schema '%1$ls' already exists.
02626 //
02627 #define FDO_125_SCHEMA_ALREADY_EXISTS    0x000023A5L
02628 
02629 //
02630 // MessageId: FDO_126_CLASS_ALREADY_EXISTS
02631 //
02632 // MessageText:
02633 //
02634 //  The class '%1$ls' already exists.
02635 //
02636 #define FDO_126_CLASS_ALREADY_EXISTS     0x000023A6L
02637 
02638 //
02639 // MessageId: FDO_127_PROPERTY_ALREADY_EXISTS
02640 //
02641 // MessageText:
02642 //
02643 //  The property '%1$ls' already exists.
02644 //
02645 #define FDO_127_PROPERTY_ALREADY_EXISTS  0x000023A7L
02646 

Comments or suggestions? Send us feedback.