1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628
|
_MSADERR_H_ = ""
#+---------------------------------------------------------------------------
#
# Microsoft OLE DB
# Copyright (C) Microsoft Corporation, 1994 - 1998.
#
#----------------------------------------------------------------------------
#
# Values are 32 bit values layed out as follows:
#
# 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
# 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
# +-+-+-+-+-+---------------------+-------------------------------+
# |S|R|C|N|r| Facility | Code |
# +-+-+-+-+-+---------------------+-------------------------------+
#
# where
#
# S - Severity - indicates success/fail
#
# 0 - Success
# 1 - Fail (COERROR)
#
# R - reserved portion of the facility code, corresponds to NT's
# second severity bit.
#
# C - reserved portion of the facility code, corresponds to NT's
# C field.
#
# N - reserved portion of the facility code. Used to indicate a
# mapped NT status value.
#
# r - reserved portion of the facility code. Reserved for internal
# use. Used to indicate HRESULT values that are not status
# values, but are instead message ids for display strings.
#
# Facility - is the facility code
#
# Code - is the facility's status code
#
#
# Define the facility codes
#
FACILITY_WINDOWS = "0x8"
FACILITY_ITF = "0x4"
#
# Define the severity codes
#
STATUS_SEVERITY_SUCCESS = "0x0"
STATUS_SEVERITY_COERROR = "0x2"
#
# MessageId: DB_E_BOGUS
#
# MessageText:
#
# Dummy error - need this error so that mc puts the above defines
# inside the FACILITY_WINDOWS guard, instead of leaving it empty
#
DB_E_BOGUS = 0x80040EFFL
#
# Codes 0x0e00-0x0eff are reserved for the OLE DB group of
# interfaces.
#
# Free codes are:
#
# Error:
# -none-
#
# Success:
# 0x0eea
# 0x0ed7
#
#
# OLEDBVER
# OLE DB version number (0x0200); this can be overridden with an older
# version number if necessary
#
# If OLEDBVER is not defined, assume version 2.0
OLEDBVER = "0x0200"
#
# MessageId: DB_E_BADACCESSORHANDLE
#
# MessageText:
#
# Invalid accessor
#
DB_E_BADACCESSORHANDLE = 0x80040E00L
#
# MessageId: DB_E_ROWLIMITEXCEEDED
#
# MessageText:
#
# Creating another row would have exceeded the total number of active
# rows supported by the rowset
#
DB_E_ROWLIMITEXCEEDED = 0x80040E01L
#
# MessageId: DB_E_READONLYACCESSOR
#
# MessageText:
#
# Unable to write with a read-only accessor
#
DB_E_READONLYACCESSOR = 0x80040E02L
#
# MessageId: DB_E_SCHEMAVIOLATION
#
# MessageText:
#
# Given values violate the database schema
#
DB_E_SCHEMAVIOLATION = 0x80040E03L
#
# MessageId: DB_E_BADROWHANDLE
#
# MessageText:
#
# Invalid row handle
#
DB_E_BADROWHANDLE = 0x80040E04L
#
# MessageId: DB_E_OBJECTOPEN
#
# MessageText:
#
# An object was open
#
DB_E_OBJECTOPEN = 0x80040E05L
#@@@+ V1.5
#
# MessageId: DB_E_BADCHAPTER
#
# MessageText:
#
# Invalid chapter
#
DB_E_BADCHAPTER = 0x80040E06L
#@@@- V1.5
#
# MessageId: DB_E_CANTCONVERTVALUE
#
# MessageText:
#
# A literal value in the command could not be converted to the
# correct type due to a reason other than data overflow
#
DB_E_CANTCONVERTVALUE = 0x80040E07L
#
# MessageId: DB_E_BADBINDINFO
#
# MessageText:
#
# Invalid binding info
#
DB_E_BADBINDINFO = 0x80040E08L
#
# MessageId: DB_SEC_E_PERMISSIONDENIED
#
# MessageText:
#
# Permission denied
#
DB_SEC_E_PERMISSIONDENIED = 0x80040E09L
#
# MessageId: DB_E_NOTAREFERENCECOLUMN
#
# MessageText:
#
# Specified column does not contain bookmarks or chapters
#
DB_E_NOTAREFERENCECOLUMN = 0x80040E0AL
#@@@+ V2.5
#
# MessageId: DB_E_LIMITREJECTED
#
# MessageText:
#
# Some cost limits were rejected
#
DB_E_LIMITREJECTED = 0x80040E0BL
#@@@- V2.5
#
# MessageId: DB_E_NOCOMMAND
#
# MessageText:
#
# No command has been set for the command object
#
DB_E_NOCOMMAND = 0x80040E0CL
#@@@+ V2.5
#
# MessageId: DB_E_COSTLIMIT
#
# MessageText:
#
# Unable to find a query plan within the given cost limit
#
DB_E_COSTLIMIT = 0x80040E0DL
#@@@- V2.5
#
# MessageId: DB_E_BADBOOKMARK
#
# MessageText:
#
# Invalid bookmark
#
DB_E_BADBOOKMARK = 0x80040E0EL
#
# MessageId: DB_E_BADLOCKMODE
#
# MessageText:
#
# Invalid lock mode
#
DB_E_BADLOCKMODE = 0x80040E0FL
#
# MessageId: DB_E_PARAMNOTOPTIONAL
#
# MessageText:
#
# No value given for one or more required parameters
#
DB_E_PARAMNOTOPTIONAL = 0x80040E10L
#
# MessageId: DB_E_BADCOLUMNID
#
# MessageText:
#
# Invalid column ID
#
DB_E_BADCOLUMNID = 0x80040E11L
#
# MessageId: DB_E_BADRATIO
#
# MessageText:
#
# Invalid ratio
#
DB_E_BADRATIO = 0x80040E12L
#@@@+ V2.0
#
# MessageId: DB_E_BADVALUES
#
# MessageText:
#
# Invalid value
#
DB_E_BADVALUES = 0x80040E13L
#@@@- V2.0
#
# MessageId: DB_E_ERRORSINCOMMAND
#
# MessageText:
#
# The command contained one or more errors
#
DB_E_ERRORSINCOMMAND = 0x80040E14L
#
# MessageId: DB_E_CANTCANCEL
#
# MessageText:
#
# The executing command cannot be canceled
#
DB_E_CANTCANCEL = 0x80040E15L
#
# MessageId: DB_E_DIALECTNOTSUPPORTED
#
# MessageText:
#
# The provider does not support the specified dialect
#
DB_E_DIALECTNOTSUPPORTED = 0x80040E16L
#
# MessageId: DB_E_DUPLICATEDATASOURCE
#
# MessageText:
#
# A data source with the specified name already exists
#
DB_E_DUPLICATEDATASOURCE = 0x80040E17L
#
# MessageId: DB_E_CANNOTRESTART
#
# MessageText:
#
# The rowset was built over a live data feed and cannot be restarted
#
DB_E_CANNOTRESTART = 0x80040E18L
#
# MessageId: DB_E_NOTFOUND
#
# MessageText:
#
# No key matching the described characteristics could be found within
# the current range
#
DB_E_NOTFOUND = 0x80040E19L
#
# MessageId: DB_E_NEWLYINSERTED
#
# MessageText:
#
# The provider is unable to determine identity for newly inserted
# rows
#
DB_E_NEWLYINSERTED = 0x80040E1BL
#@@@+ V2.5
#
# MessageId: DB_E_CANNOTFREE
#
# MessageText:
#
# Ownership of this tree has been given to the provider
#
DB_E_CANNOTFREE = 0x80040E1AL
#
# MessageId: DB_E_GOALREJECTED
#
# MessageText:
#
# No nonzero weights specified for any goals supported, so goal was
# rejected; current goal was not changed
#
DB_E_GOALREJECTED = 0x80040E1CL
#@@@- V2.5
#
# MessageId: DB_E_UNSUPPORTEDCONVERSION
#
# MessageText:
#
# Requested conversion is not supported
#
DB_E_UNSUPPORTEDCONVERSION = 0x80040E1DL
#
# MessageId: DB_E_BADSTARTPOSITION
#
# MessageText:
#
# lRowsOffset would position you past either end of the rowset,
# regardless of the cRows value specified; cRowsObtained is 0
#
DB_E_BADSTARTPOSITION = 0x80040E1EL
#@@@+ V2.0
#
# MessageId: DB_E_NOQUERY
#
# MessageText:
#
# Information was requested for a query, and the query was not set
#
DB_E_NOQUERY = 0x80040E1FL
#@@@- V2.0
#
# MessageId: DB_E_NOTREENTRANT
#
# MessageText:
#
# Provider called a method from IRowsetNotify in the consumer and the
# method has not yet returned
#
DB_E_NOTREENTRANT = 0x80040E20L
#
# MessageId: DB_E_ERRORSOCCURRED
#
# MessageText:
#
# Errors occurred
#
DB_E_ERRORSOCCURRED = 0x80040E21L
#
# MessageId: DB_E_NOAGGREGATION
#
# MessageText:
#
# A non-NULL controlling IUnknown was specified and the object being
# created does not support aggregation
#
DB_E_NOAGGREGATION = 0x80040E22L
#
# MessageId: DB_E_DELETEDROW
#
# MessageText:
#
# A given HROW referred to a hard- or soft-deleted row
#
DB_E_DELETEDROW = 0x80040E23L
#
# MessageId: DB_E_CANTFETCHBACKWARDS
#
# MessageText:
#
# The rowset does not support fetching backwards
#
DB_E_CANTFETCHBACKWARDS = 0x80040E24L
#
# MessageId: DB_E_ROWSNOTRELEASED
#
# MessageText:
#
# All HROWs must be released before new ones can be obtained
#
DB_E_ROWSNOTRELEASED = 0x80040E25L
#
# MessageId: DB_E_BADSTORAGEFLAG
#
# MessageText:
#
# One of the specified storage flags was not supported
#
DB_E_BADSTORAGEFLAG = 0x80040E26L
#@@@+ V1.5
#
# MessageId: DB_E_BADCOMPAREOP
#
# MessageText:
#
# The comparison operator was invalid
#
DB_E_BADCOMPAREOP = 0x80040E27L
#@@@- V1.5
#
# MessageId: DB_E_BADSTATUSVALUE
#
# MessageText:
#
# The specified status flag was neither DBCOLUMNSTATUS_OK nor
# DBCOLUMNSTATUS_ISNULL
#
DB_E_BADSTATUSVALUE = 0x80040E28L
#
# MessageId: DB_E_CANTSCROLLBACKWARDS
#
# MessageText:
#
# The rowset cannot scroll backwards
#
DB_E_CANTSCROLLBACKWARDS = 0x80040E29L
#@@@+ V2.5
#
# MessageId: DB_E_BADREGIONHANDLE
#
# MessageText:
#
# Invalid region handle
#
DB_E_BADREGIONHANDLE = 0x80040E2AL
#
# MessageId: DB_E_NONCONTIGUOUSRANGE
#
# MessageText:
#
# The specified set of rows was not contiguous to or overlapping the
# rows in the specified watch region
#
DB_E_NONCONTIGUOUSRANGE = 0x80040E2BL
#
# MessageId: DB_E_INVALIDTRANSITION
#
# MessageText:
#
# A transition from ALL* to MOVE* or EXTEND* was specified
#
DB_E_INVALIDTRANSITION = 0x80040E2CL
#
# MessageId: DB_E_NOTASUBREGION
#
# MessageText:
#
# The specified region is not a proper subregion of the region
# identified by the given watch region handle
#
DB_E_NOTASUBREGION = 0x80040E2DL
#@@@- V2.5
#
# MessageId: DB_E_MULTIPLESTATEMENTS
#
# MessageText:
#
# The provider does not support multi-statement commands
#
DB_E_MULTIPLESTATEMENTS = 0x80040E2EL
#
# MessageId: DB_E_INTEGRITYVIOLATION
#
# MessageText:
#
# A specified value violated the integrity constraints for a column or
# table
#
DB_E_INTEGRITYVIOLATION = 0x80040E2FL
#
# MessageId: DB_E_BADTYPENAME
#
# MessageText:
#
# The given type name was unrecognized
#
DB_E_BADTYPENAME = 0x80040E30L
#
# MessageId: DB_E_ABORTLIMITREACHED
#
# MessageText:
#
# Execution aborted because a resource limit has been reached; no
# results have been returned
#
DB_E_ABORTLIMITREACHED = 0x80040E31L
#@@@+ V2.0
#
# MessageId: DB_E_ROWSETINCOMMAND
#
# MessageText:
#
# Cannot clone a command object whose command tree contains a rowset
# or rowsets
#
DB_E_ROWSETINCOMMAND = 0x80040E32L
#
# MessageId: DB_E_CANTTRANSLATE
#
# MessageText:
#
# Cannot represent the current tree as text
#
DB_E_CANTTRANSLATE = 0x80040E33L
#@@@- V2.0
#
# MessageId: DB_E_DUPLICATEINDEXID
#
# MessageText:
#
# The specified index already exists
#
DB_E_DUPLICATEINDEXID = 0x80040E34L
#
# MessageId: DB_E_NOINDEX
#
# MessageText:
#
# The specified index does not exist
#
DB_E_NOINDEX = 0x80040E35L
#
# MessageId: DB_E_INDEXINUSE
#
# MessageText:
#
# The specified index was in use
#
DB_E_INDEXINUSE = 0x80040E36L
#
# MessageId: DB_E_NOTABLE
#
# MessageText:
#
# The specified table does not exist
#
DB_E_NOTABLE = 0x80040E37L
#
# MessageId: DB_E_CONCURRENCYVIOLATION
#
# MessageText:
#
# The rowset was using optimistic concurrency and the value of a
# column has been changed since it was last read
#
DB_E_CONCURRENCYVIOLATION = 0x80040E38L
#
# MessageId: DB_E_BADCOPY
#
# MessageText:
#
# Errors were detected during the copy
#
DB_E_BADCOPY = 0x80040E39L
#
# MessageId: DB_E_BADPRECISION
#
# MessageText:
#
# A specified precision was invalid
#
DB_E_BADPRECISION = 0x80040E3AL
#
# MessageId: DB_E_BADSCALE
#
# MessageText:
#
# A specified scale was invalid
#
DB_E_BADSCALE = 0x80040E3BL
#
# MessageId: DB_E_BADTABLEID
#
# MessageText:
#
# Invalid table ID
#
DB_E_BADTABLEID = 0x80040E3CL
# DB_E_BADID is deprecated; use DB_E_BADTABLEID instead
DB_E_BADID = "DB_E_BADTABLEID"
#
# MessageId: DB_E_BADTYPE
#
# MessageText:
#
# A specified type was invalid
#
DB_E_BADTYPE = 0x80040E3DL
#
# MessageId: DB_E_DUPLICATECOLUMNID
#
# MessageText:
#
# A column ID was occurred more than once in the specification
#
DB_E_DUPLICATECOLUMNID = 0x80040E3EL
#
# MessageId: DB_E_DUPLICATETABLEID
#
# MessageText:
#
# The specified table already exists
#
DB_E_DUPLICATETABLEID = 0x80040E3FL
#
# MessageId: DB_E_TABLEINUSE
#
# MessageText:
#
# The specified table was in use
#
DB_E_TABLEINUSE = 0x80040E40L
#
# MessageId: DB_E_NOLOCALE
#
# MessageText:
#
# The specified locale ID was not supported
#
DB_E_NOLOCALE = 0x80040E41L
#
# MessageId: DB_E_BADRECORDNUM
#
# MessageText:
#
# The specified record number is invalid
#
DB_E_BADRECORDNUM = 0x80040E42L
#
# MessageId: DB_E_BOOKMARKSKIPPED
#
# MessageText:
#
# Although the bookmark was validly formed, no row could be found to
# match it
#
DB_E_BOOKMARKSKIPPED = 0x80040E43L
#
# MessageId: DB_E_BADPROPERTYVALUE
#
# MessageText:
#
# The value of a property was invalid
#
DB_E_BADPROPERTYVALUE = 0x80040E44L
#
# MessageId: DB_E_INVALID
#
# MessageText:
#
# The rowset was not chaptered
#
DB_E_INVALID = 0x80040E45L
#
# MessageId: DB_E_BADACCESSORFLAGS
#
# MessageText:
#
# Invalid accessor
#
DB_E_BADACCESSORFLAGS = 0x80040E46L
#
# MessageId: DB_E_BADSTORAGEFLAGS
#
# MessageText:
#
# Invalid storage flags
#
DB_E_BADSTORAGEFLAGS = 0x80040E47L
#
# MessageId: DB_E_BYREFACCESSORNOTSUPPORTED
#
# MessageText:
#
# By-ref accessors are not supported by this provider
#
DB_E_BYREFACCESSORNOTSUPPORTED = 0x80040E48L
#
# MessageId: DB_E_NULLACCESSORNOTSUPPORTED
#
# MessageText:
#
# Null accessors are not supported by this provider
#
DB_E_NULLACCESSORNOTSUPPORTED = 0x80040E49L
#
# MessageId: DB_E_NOTPREPARED
#
# MessageText:
#
# The command was not prepared
#
DB_E_NOTPREPARED = 0x80040E4AL
#
# MessageId: DB_E_BADACCESSORTYPE
#
# MessageText:
#
# The specified accessor was not a parameter accessor
#
DB_E_BADACCESSORTYPE = 0x80040E4BL
#
# MessageId: DB_E_WRITEONLYACCESSOR
#
# MessageText:
#
# The given accessor was write-only
#
DB_E_WRITEONLYACCESSOR = 0x80040E4CL
#
# MessageId: DB_SEC_E_AUTH_FAILED
#
# MessageText:
#
# Authentication failed
#
DB_SEC_E_AUTH_FAILED = 0x80040E4DL
#
# MessageId: DB_E_CANCELED
#
# MessageText:
#
# The change was canceled during notification; no columns are changed
#
DB_E_CANCELED = 0x80040E4EL
#@@@+ V2.0
#
# MessageId: DB_E_CHAPTERNOTRELEASED
#
# MessageText:
#
# The rowset was single-chaptered and the chapter was not released
#
DB_E_CHAPTERNOTRELEASED = 0x80040E4FL
#@@@- V2.0
#
# MessageId: DB_E_BADSOURCEHANDLE
#
# MessageText:
#
# Invalid source handle
#
DB_E_BADSOURCEHANDLE = 0x80040E50L
#
# MessageId: DB_E_PARAMUNAVAILABLE
#
# MessageText:
#
# The provider cannot derive parameter info and SetParameterInfo has
# not been called
#
DB_E_PARAMUNAVAILABLE = 0x80040E51L
#
# MessageId: DB_E_ALREADYINITIALIZED
#
# MessageText:
#
# The data source object is already initialized
#
DB_E_ALREADYINITIALIZED = 0x80040E52L
#
# MessageId: DB_E_NOTSUPPORTED
#
# MessageText:
#
# The provider does not support this method
#
DB_E_NOTSUPPORTED = 0x80040E53L
#
# MessageId: DB_E_MAXPENDCHANGESEXCEEDED
#
# MessageText:
#
# The number of rows with pending changes has exceeded the set limit
#
DB_E_MAXPENDCHANGESEXCEEDED = 0x80040E54L
#
# MessageId: DB_E_BADORDINAL
#
# MessageText:
#
# The specified column did not exist
#
DB_E_BADORDINAL = 0x80040E55L
#
# MessageId: DB_E_PENDINGCHANGES
#
# MessageText:
#
# There are pending changes on a row with a reference count of zero
#
DB_E_PENDINGCHANGES = 0x80040E56L
#
# MessageId: DB_E_DATAOVERFLOW
#
# MessageText:
#
# A literal value in the command overflowed the range of the type of
# the associated column
#
DB_E_DATAOVERFLOW = 0x80040E57L
#
# MessageId: DB_E_BADHRESULT
#
# MessageText:
#
# The supplied HRESULT was invalid
#
DB_E_BADHRESULT = 0x80040E58L
#
# MessageId: DB_E_BADLOOKUPID
#
# MessageText:
#
# The supplied LookupID was invalid
#
DB_E_BADLOOKUPID = 0x80040E59L
#
# MessageId: DB_E_BADDYNAMICERRORID
#
# MessageText:
#
# The supplied DynamicErrorID was invalid
#
DB_E_BADDYNAMICERRORID = 0x80040E5AL
#
# MessageId: DB_E_PENDINGINSERT
#
# MessageText:
#
# Unable to get visible data for a newly-inserted row that has not
# yet been updated
#
DB_E_PENDINGINSERT = 0x80040E5BL
#
# MessageId: DB_E_BADCONVERTFLAG
#
# MessageText:
#
# Invalid conversion flag
#
DB_E_BADCONVERTFLAG = 0x80040E5CL
#
# MessageId: DB_E_BADPARAMETERNAME
#
# MessageText:
#
# The given parameter name was unrecognized
#
DB_E_BADPARAMETERNAME = 0x80040E5DL
#
# MessageId: DB_E_MULTIPLESTORAGE
#
# MessageText:
#
# Multiple storage objects can not be open simultaneously
#
DB_E_MULTIPLESTORAGE = 0x80040E5EL
#
# MessageId: DB_E_CANTFILTER
#
# MessageText:
#
# The requested filter could not be opened
#
DB_E_CANTFILTER = 0x80040E5FL
#
# MessageId: DB_E_CANTORDER
#
# MessageText:
#
# The requested order could not be opened
#
DB_E_CANTORDER = 0x80040E60L
#@@@+ V2.0
#
# MessageId: MD_E_BADTUPLE
#
# MessageText:
#
# Bad tuple
#
MD_E_BADTUPLE = 0x80040E61L
#
# MessageId: MD_E_BADCOORDINATE
#
# MessageText:
#
# Bad coordinate
#
MD_E_BADCOORDINATE = 0x80040E62L
#
# MessageId: MD_E_INVALIDAXIS
#
# MessageText:
#
# The given aixs was not valid for this Dataset
#
MD_E_INVALIDAXIS = 0x80040E63L
#
# MessageId: MD_E_INVALIDCELLRANGE
#
# MessageText:
#
# One or more of the given cell ordinals was invalid
#
MD_E_INVALIDCELLRANGE = 0x80040E64L
#
# MessageId: DB_E_NOCOLUMN
#
# MessageText:
#
# The supplied columnID was invalid
#
DB_E_NOCOLUMN = 0x80040E65L
#
# MessageId: DB_E_COMMANDNOTPERSISTED
#
# MessageText:
#
# The supplied command does not have a DBID
#
DB_E_COMMANDNOTPERSISTED = 0x80040E67L
#
# MessageId: DB_E_DUPLICATEID
#
# MessageText:
#
# The supplied DBID already exists
#
DB_E_DUPLICATEID = 0x80040E68L
#
# MessageId: DB_E_OBJECTCREATIONLIMITREACHED
#
# MessageText:
#
# The maximum number of Sessions supported by the provider has
# already been created. The consumer must release one or more
# currently held Sessions before obtaining a new Session Object
#
DB_E_OBJECTCREATIONLIMITREACHED = 0x80040E69L
#
# MessageId: DB_E_BADINDEXID
#
# MessageText:
#
# The index ID is invalid
#
DB_E_BADINDEXID = 0x80040E72L
#
# MessageId: DB_E_BADINITSTRING
#
# MessageText:
#
# The initialization string specified does not conform to specificiation
#
DB_E_BADINITSTRING = 0x80040E73L
#
# MessageId: DB_E_NOPROVIDERSREGISTERED
#
# MessageText:
#
# The OLE DB root enumerator did not return any providers that
# matched any of the SOURCES_TYPEs requested
#
DB_E_NOPROVIDERSREGISTERED = 0x80040E74L
#
# MessageId: DB_E_MISMATCHEDPROVIDER
#
# MessageText:
#
# The initialization string specifies a provider which does not match the currently active provider
#
DB_E_MISMATCHEDPROVIDER = 0x80040E75L
#@@@- V2.0
#@@@+ V2.1
SEC_E_PERMISSIONDENIED = "DB_SEC_E_PERMISSIONDENIED"
#
# MessageId: SEC_E_BADTRUSTEEID
#
# MessageText:
#
# Invalid trustee value
#
SEC_E_BADTRUSTEEID = 0x80040E6AL
#
# MessageId: SEC_E_NOTRUSTEEID
#
# MessageText:
#
# The trustee is not for the current data source
#
SEC_E_NOTRUSTEEID = 0x80040E6BL
#
# MessageId: SEC_E_NOMEMBERSHIPSUPPORT
#
# MessageText:
#
# The trustee does not support memberships/collections
#
SEC_E_NOMEMBERSHIPSUPPORT = 0x80040E6CL
#
# MessageId: SEC_E_INVALIDOBJECT
#
# MessageText:
#
# The object is invalid or unknown to the provider
#
SEC_E_INVALIDOBJECT = 0x80040E6DL
#
# MessageId: SEC_E_NOOWNER
#
# MessageText:
#
# No owner exists for the object
#
SEC_E_NOOWNER = 0x80040E6EL
#
# MessageId: SEC_E_INVALIDACCESSENTRYLIST
#
# MessageText:
#
# The access entry list supplied is invalid
#
SEC_E_INVALIDACCESSENTRYLIST = 0x80040E6FL
#
# MessageId: SEC_E_INVALIDOWNER
#
# MessageText:
#
# The trustee supplied as owner is invalid or unknown to the provider
#
SEC_E_INVALIDOWNER = 0x80040E70L
#
# MessageId: SEC_E_INVALIDACCESSENTRY
#
# MessageText:
#
# The permission supplied in the access entry list is invalid
#
SEC_E_INVALIDACCESSENTRY = 0x80040E71L
SEC_E_PERMISSIONDENIED = "DB_SEC_E_PERMISSIONDENIED"
#@@@- V2.1
#
# MessageId: DB_S_ROWLIMITEXCEEDED
#
# MessageText:
#
# Fetching requested number of rows would have exceeded total number
# of active rows supported by the rowset
#
DB_S_ROWLIMITEXCEEDED = 0x00040EC0L
#
# MessageId: DB_S_COLUMNTYPEMISMATCH
#
# MessageText:
#
# One or more column types are incompatible; conversion errors will
# occur during copying
#
DB_S_COLUMNTYPEMISMATCH = 0x00040EC1L
#
# MessageId: DB_S_TYPEINFOOVERRIDDEN
#
# MessageText:
#
# Parameter type information has been overridden by caller
#
DB_S_TYPEINFOOVERRIDDEN = 0x00040EC2L
#
# MessageId: DB_S_BOOKMARKSKIPPED
#
# MessageText:
#
# Skipped bookmark for deleted or non-member row
#
DB_S_BOOKMARKSKIPPED = 0x00040EC3L
#@@@+ V2.0
#
# MessageId: DB_S_NONEXTROWSET
#
# MessageText:
#
# There are no more rowsets
#
DB_S_NONEXTROWSET = 0x00040EC5L
#@@@- V2.0
#
# MessageId: DB_S_ENDOFROWSET
#
# MessageText:
#
# Reached start or end of rowset or chapter
#
DB_S_ENDOFROWSET = 0x00040EC6L
#
# MessageId: DB_S_COMMANDREEXECUTED
#
# MessageText:
#
# The provider re-executed the command
#
DB_S_COMMANDREEXECUTED = 0x00040EC7L
#
# MessageId: DB_S_BUFFERFULL
#
# MessageText:
#
# Variable data buffer full
#
DB_S_BUFFERFULL = 0x00040EC8L
#
# MessageId: DB_S_NORESULT
#
# MessageText:
#
# There are no more results
#
DB_S_NORESULT = 0x00040EC9L
#
# MessageId: DB_S_CANTRELEASE
#
# MessageText:
#
# Server cannot release or downgrade a lock until the end of the
# transaction
#
DB_S_CANTRELEASE = 0x00040ECAL
#@@@+ V2.5
#
# MessageId: DB_S_GOALCHANGED
#
# MessageText:
#
# Specified weight was not supported or exceeded the supported limit
# and was set to 0 or the supported limit
#
DB_S_GOALCHANGED = 0x00040ECBL
#@@@- V2.5
#@@@+ V1.5
#
# MessageId: DB_S_UNWANTEDOPERATION
#
# MessageText:
#
# Consumer is uninterested in receiving further notification calls for
# this reason
#
DB_S_UNWANTEDOPERATION = 0x00040ECCL
#@@@- V1.5
#
# MessageId: DB_S_DIALECTIGNORED
#
# MessageText:
#
# Input dialect was ignored and text was returned in different
# dialect
#
DB_S_DIALECTIGNORED = 0x00040ECDL
#
# MessageId: DB_S_UNWANTEDPHASE
#
# MessageText:
#
# Consumer is uninterested in receiving further notification calls for
# this phase
#
DB_S_UNWANTEDPHASE = 0x00040ECEL
#
# MessageId: DB_S_UNWANTEDREASON
#
# MessageText:
#
# Consumer is uninterested in receiving further notification calls for
# this reason
#
DB_S_UNWANTEDREASON = 0x00040ECFL
#@@@+ V1.5
#
# MessageId: DB_S_ASYNCHRONOUS
#
# MessageText:
#
# The operation is being processed asynchronously
#
DB_S_ASYNCHRONOUS = 0x00040ED0L
#@@@- V1.5
#
# MessageId: DB_S_COLUMNSCHANGED
#
# MessageText:
#
# In order to reposition to the start of the rowset, the provider had
# to reexecute the query; either the order of the columns changed or
# columns were added to or removed from the rowset
#
DB_S_COLUMNSCHANGED = 0x00040ED1L
#
# MessageId: DB_S_ERRORSRETURNED
#
# MessageText:
#
# The method had some errors; errors have been returned in the error
# array
#
DB_S_ERRORSRETURNED = 0x00040ED2L
#
# MessageId: DB_S_BADROWHANDLE
#
# MessageText:
#
# Invalid row handle
#
DB_S_BADROWHANDLE = 0x00040ED3L
#
# MessageId: DB_S_DELETEDROW
#
# MessageText:
#
# A given HROW referred to a hard-deleted row
#
DB_S_DELETEDROW = 0x00040ED4L
#@@@+ V2.5
#
# MessageId: DB_S_TOOMANYCHANGES
#
# MessageText:
#
# The provider was unable to keep track of all the changes; the client
# must refetch the data associated with the watch region using another
# method
#
DB_S_TOOMANYCHANGES = 0x00040ED5L
#@@@- V2.5
#
# MessageId: DB_S_STOPLIMITREACHED
#
# MessageText:
#
# Execution stopped because a resource limit has been reached; results
# obtained so far have been returned but execution cannot be resumed
#
DB_S_STOPLIMITREACHED = 0x00040ED6L
#
# MessageId: DB_S_LOCKUPGRADED
#
# MessageText:
#
# A lock was upgraded from the value specified
#
DB_S_LOCKUPGRADED = 0x00040ED8L
#
# MessageId: DB_S_PROPERTIESCHANGED
#
# MessageText:
#
# One or more properties were changed as allowed by provider
#
DB_S_PROPERTIESCHANGED = 0x00040ED9L
#
# MessageId: DB_S_ERRORSOCCURRED
#
# MessageText:
#
# Errors occurred
#
DB_S_ERRORSOCCURRED = 0x00040EDAL
#
# MessageId: DB_S_PARAMUNAVAILABLE
#
# MessageText:
#
# A specified parameter was invalid
#
DB_S_PARAMUNAVAILABLE = 0x00040EDBL
#
# MessageId: DB_S_MULTIPLECHANGES
#
# MessageText:
#
# Updating this row caused more than one row to be updated in the
# data source
#
DB_S_MULTIPLECHANGES = 0x00040EDCL
errors = {
DB_E_BOGUS: 'DB_E_BOGUS:\n\n MessageId: DB_E_BOGUS\n\n MessageText:\n\n Dummy error - need this error so that mc puts the above defines\n inside the FACILITY_WINDOWS guard, instead of leaving it empty\n',
DB_E_BADACCESSORHANDLE: 'DB_E_BADACCESSORHANDLE:\n\n MessageId: DB_E_BADACCESSORHANDLE\n\n MessageText:\n\n Invalid accessor\n',
DB_E_ROWLIMITEXCEEDED: 'DB_E_ROWLIMITEXCEEDED:\n\n MessageId: DB_E_ROWLIMITEXCEEDED\n\n MessageText:\n\n Creating another row would have exceeded the total number of active\n rows supported by the rowset\n',
DB_E_READONLYACCESSOR: 'DB_E_READONLYACCESSOR:\n\n MessageId: DB_E_READONLYACCESSOR\n\n MessageText:\n\n Unable to write with a read-only accessor\n',
DB_E_SCHEMAVIOLATION: 'DB_E_SCHEMAVIOLATION:\n\n MessageId: DB_E_SCHEMAVIOLATION\n\n MessageText:\n\n Given values violate the database schema\n',
DB_E_BADROWHANDLE: 'DB_E_BADROWHANDLE:\n\n MessageId: DB_E_BADROWHANDLE\n\n MessageText:\n\n Invalid row handle\n',
DB_E_OBJECTOPEN: 'DB_E_OBJECTOPEN:\n\n MessageId: DB_E_OBJECTOPEN\n\n MessageText:\n\n An object was open\n',
DB_E_BADCHAPTER: 'DB_E_BADCHAPTER:\n@@@+ V1.5\n\n MessageId: DB_E_BADCHAPTER\n\n MessageText:\n\n Invalid chapter\n',
DB_E_CANTCONVERTVALUE: 'DB_E_CANTCONVERTVALUE:\n\n MessageId: DB_E_CANTCONVERTVALUE\n\n MessageText:\n\n A literal value in the command could not be converted to the\n correct type due to a reason other than data overflow\n',
DB_E_BADBINDINFO: 'DB_E_BADBINDINFO:\n\n MessageId: DB_E_BADBINDINFO\n\n MessageText:\n\n Invalid binding info\n',
DB_SEC_E_PERMISSIONDENIED: 'DB_SEC_E_PERMISSIONDENIED:\n\n MessageId: DB_SEC_E_PERMISSIONDENIED\n\n MessageText:\n\n Permission denied\n',
DB_E_NOTAREFERENCECOLUMN: 'DB_E_NOTAREFERENCECOLUMN:\n\n MessageId: DB_E_NOTAREFERENCECOLUMN\n\n MessageText:\n\n Specified column does not contain bookmarks or chapters\n',
DB_E_LIMITREJECTED: 'DB_E_LIMITREJECTED:\n@@@+ V2.5\n\n MessageId: DB_E_LIMITREJECTED\n\n MessageText:\n\n Some cost limits were rejected\n',
DB_E_NOCOMMAND: 'DB_E_NOCOMMAND:\n\n MessageId: DB_E_NOCOMMAND\n\n MessageText:\n\n No command has been set for the command object\n',
DB_E_COSTLIMIT: 'DB_E_COSTLIMIT:\n@@@+ V2.5\n\n MessageId: DB_E_COSTLIMIT\n\n MessageText:\n\n Unable to find a query plan within the given cost limit\n',
DB_E_BADBOOKMARK: 'DB_E_BADBOOKMARK:\n\n MessageId: DB_E_BADBOOKMARK\n\n MessageText:\n\n Invalid bookmark\n',
DB_E_BADLOCKMODE: 'DB_E_BADLOCKMODE:\n\n MessageId: DB_E_BADLOCKMODE\n\n MessageText:\n\n Invalid lock mode\n',
DB_E_PARAMNOTOPTIONAL: 'DB_E_PARAMNOTOPTIONAL:\n\n MessageId: DB_E_PARAMNOTOPTIONAL\n\n MessageText:\n\n No value given for one or more required parameters\n',
DB_E_BADCOLUMNID: 'DB_E_BADCOLUMNID:\n\n MessageId: DB_E_BADCOLUMNID\n\n MessageText:\n\n Invalid column ID\n',
DB_E_BADRATIO: 'DB_E_BADRATIO:\n\n MessageId: DB_E_BADRATIO\n\n MessageText:\n\n Invalid ratio\n',
DB_E_BADVALUES: 'DB_E_BADVALUES:\n@@@+ V2.0\n\n MessageId: DB_E_BADVALUES\n\n MessageText:\n\n Invalid value\n',
DB_E_ERRORSINCOMMAND: 'DB_E_ERRORSINCOMMAND:\n\n MessageId: DB_E_ERRORSINCOMMAND\n\n MessageText:\n\n The command contained one or more errors\n',
DB_E_CANTCANCEL: 'DB_E_CANTCANCEL:\n\n MessageId: DB_E_CANTCANCEL\n\n MessageText:\n\n The executing command cannot be canceled\n',
DB_E_DIALECTNOTSUPPORTED: 'DB_E_DIALECTNOTSUPPORTED:\n\n MessageId: DB_E_DIALECTNOTSUPPORTED\n\n MessageText:\n\n The provider does not support the specified dialect\n',
DB_E_DUPLICATEDATASOURCE: 'DB_E_DUPLICATEDATASOURCE:\n\n MessageId: DB_E_DUPLICATEDATASOURCE\n\n MessageText:\n\n A data source with the specified name already exists\n',
DB_E_CANNOTRESTART: 'DB_E_CANNOTRESTART:\n\n MessageId: DB_E_CANNOTRESTART\n\n MessageText:\n\n The rowset was built over a live data feed and cannot be restarted\n',
DB_E_NOTFOUND: 'DB_E_NOTFOUND:\n\n MessageId: DB_E_NOTFOUND\n\n MessageText:\n\n No key matching the described characteristics could be found within\n the current range\n',
DB_E_NEWLYINSERTED: 'DB_E_NEWLYINSERTED:\n\n MessageId: DB_E_NEWLYINSERTED\n\n MessageText:\n\n The provider is unable to determine identity for newly inserted\n rows\n',
DB_E_CANNOTFREE: 'DB_E_CANNOTFREE:\n@@@+ V2.5\n\n MessageId: DB_E_CANNOTFREE\n\n MessageText:\n\n Ownership of this tree has been given to the provider\n',
DB_E_GOALREJECTED: 'DB_E_GOALREJECTED:\n\n MessageId: DB_E_GOALREJECTED\n\n MessageText:\n\n No nonzero weights specified for any goals supported, so goal was\n rejected; current goal was not changed\n',
DB_E_UNSUPPORTEDCONVERSION: 'DB_E_UNSUPPORTEDCONVERSION:\n\n MessageId: DB_E_UNSUPPORTEDCONVERSION\n\n MessageText:\n\n Requested conversion is not supported\n',
DB_E_BADSTARTPOSITION: 'DB_E_BADSTARTPOSITION:\n\n MessageId: DB_E_BADSTARTPOSITION\n\n MessageText:\n\n lRowsOffset would position you past either end of the rowset,\n regardless of the cRows value specified; cRowsObtained is 0\n',
DB_E_NOQUERY: 'DB_E_NOQUERY:\n@@@+ V2.0\n\n MessageId: DB_E_NOQUERY\n\n MessageText:\n\n Information was requested for a query, and the query was not set\n',
DB_E_NOTREENTRANT: 'DB_E_NOTREENTRANT:\n\n MessageId: DB_E_NOTREENTRANT\n\n MessageText:\n\n Provider called a method from IRowsetNotify in the consumer and\tthe\n method has not yet returned\n',
DB_E_ERRORSOCCURRED: 'DB_E_ERRORSOCCURRED:\n\n MessageId: DB_E_ERRORSOCCURRED\n\n MessageText:\n\n Errors occurred\n',
DB_E_NOAGGREGATION: 'DB_E_NOAGGREGATION:\n\n MessageId: DB_E_NOAGGREGATION\n\n MessageText:\n\n A non-NULL controlling IUnknown was specified and the object being\n created does not support aggregation\n',
DB_E_DELETEDROW: 'DB_E_DELETEDROW:\n\n MessageId: DB_E_DELETEDROW\n\n MessageText:\n\n A given HROW referred to a hard- or soft-deleted row\n',
DB_E_CANTFETCHBACKWARDS: 'DB_E_CANTFETCHBACKWARDS:\n\n MessageId: DB_E_CANTFETCHBACKWARDS\n\n MessageText:\n\n The rowset does not support fetching backwards\n',
DB_E_ROWSNOTRELEASED: 'DB_E_ROWSNOTRELEASED:\n\n MessageId: DB_E_ROWSNOTRELEASED\n\n MessageText:\n\n All HROWs must be released before new ones can be obtained\n',
DB_E_BADSTORAGEFLAG: 'DB_E_BADSTORAGEFLAG:\n\n MessageId: DB_E_BADSTORAGEFLAG\n\n MessageText:\n\n One of the specified storage flags was not supported\n',
DB_E_BADCOMPAREOP: 'DB_E_BADCOMPAREOP:\n@@@+ V1.5\n\n MessageId: DB_E_BADCOMPAREOP\n\n MessageText:\n\n The comparison operator was invalid\n',
DB_E_BADSTATUSVALUE: 'DB_E_BADSTATUSVALUE:\n\n MessageId: DB_E_BADSTATUSVALUE\n\n MessageText:\n\n The specified status flag was neither DBCOLUMNSTATUS_OK nor\n DBCOLUMNSTATUS_ISNULL\n',
DB_E_CANTSCROLLBACKWARDS: 'DB_E_CANTSCROLLBACKWARDS:\n\n MessageId: DB_E_CANTSCROLLBACKWARDS\n\n MessageText:\n\n The rowset cannot scroll backwards\n',
DB_E_BADREGIONHANDLE: 'DB_E_BADREGIONHANDLE:\n@@@+ V2.5\n\n MessageId: DB_E_BADREGIONHANDLE\n\n MessageText:\n\n Invalid region handle\n',
DB_E_NONCONTIGUOUSRANGE: 'DB_E_NONCONTIGUOUSRANGE:\n\n MessageId: DB_E_NONCONTIGUOUSRANGE\n\n MessageText:\n\n The specified set of rows was not contiguous to or overlapping the\n rows in the specified watch region\n',
DB_E_INVALIDTRANSITION: 'DB_E_INVALIDTRANSITION:\n\n MessageId: DB_E_INVALIDTRANSITION\n\n MessageText:\n\n A transition from ALL* to MOVE* or EXTEND* was specified\n',
DB_E_NOTASUBREGION: 'DB_E_NOTASUBREGION:\n\n MessageId: DB_E_NOTASUBREGION\n\n MessageText:\n\n The specified region is not a proper subregion of the region\n identified by the given watch region handle\n',
DB_E_MULTIPLESTATEMENTS: 'DB_E_MULTIPLESTATEMENTS:\n\n MessageId: DB_E_MULTIPLESTATEMENTS\n\n MessageText:\n\n The provider does not support multi-statement commands\n',
DB_E_INTEGRITYVIOLATION: 'DB_E_INTEGRITYVIOLATION:\n\n MessageId: DB_E_INTEGRITYVIOLATION\n\n MessageText:\n\n A specified value violated the integrity constraints for a column or\n table\n',
DB_E_BADTYPENAME: 'DB_E_BADTYPENAME:\n\n MessageId: DB_E_BADTYPENAME\n\n MessageText:\n\n The given type name was unrecognized\n',
DB_E_ABORTLIMITREACHED: 'DB_E_ABORTLIMITREACHED:\n\n MessageId: DB_E_ABORTLIMITREACHED\n\n MessageText:\n\n Execution aborted because a resource limit has been reached; no\n results have been returned\n',
DB_E_ROWSETINCOMMAND: 'DB_E_ROWSETINCOMMAND:\n@@@+ V2.0\n\n MessageId: DB_E_ROWSETINCOMMAND\n\n MessageText:\n\n Cannot clone a command object whose command tree contains a rowset\n or rowsets\n',
DB_E_CANTTRANSLATE: 'DB_E_CANTTRANSLATE:\n\n MessageId: DB_E_CANTTRANSLATE\n\n MessageText:\n\n Cannot represent the current tree as text\n',
DB_E_DUPLICATEINDEXID: 'DB_E_DUPLICATEINDEXID:\n\n MessageId: DB_E_DUPLICATEINDEXID\n\n MessageText:\n\n The specified index already exists\n',
DB_E_NOINDEX: 'DB_E_NOINDEX:\n\n MessageId: DB_E_NOINDEX\n\n MessageText:\n\n The specified index does not exist\n',
DB_E_INDEXINUSE: 'DB_E_INDEXINUSE:\n\n MessageId: DB_E_INDEXINUSE\n\n MessageText:\n\n The specified index was in use\n',
DB_E_NOTABLE: 'DB_E_NOTABLE:\n\n MessageId: DB_E_NOTABLE\n\n MessageText:\n\n The specified table does not exist\n',
DB_E_CONCURRENCYVIOLATION: 'DB_E_CONCURRENCYVIOLATION:\n\n MessageId: DB_E_CONCURRENCYVIOLATION\n\n MessageText:\n\n The rowset was using optimistic concurrency and the value of a\n column has been changed since it was last read\n',
DB_E_BADCOPY: 'DB_E_BADCOPY:\n\n MessageId: DB_E_BADCOPY\n\n MessageText:\n\n Errors were detected during the copy\n',
DB_E_BADPRECISION: 'DB_E_BADPRECISION:\n\n MessageId: DB_E_BADPRECISION\n\n MessageText:\n\n A specified precision was invalid\n',
DB_E_BADSCALE: 'DB_E_BADSCALE:\n\n MessageId: DB_E_BADSCALE\n\n MessageText:\n\n A specified scale was invalid\n',
DB_E_BADTABLEID: 'DB_E_BADTABLEID:\n\n MessageId: DB_E_BADTABLEID\n\n MessageText:\n\n Invalid table ID\n',
DB_E_BADTYPE: 'DB_E_BADTYPE:\n\n MessageId: DB_E_BADTYPE\n\n MessageText:\n\n A specified type was invalid\n',
DB_E_DUPLICATECOLUMNID: 'DB_E_DUPLICATECOLUMNID:\n\n MessageId: DB_E_DUPLICATECOLUMNID\n\n MessageText:\n\n A column ID was occurred more than once in the specification\n',
DB_E_DUPLICATETABLEID: 'DB_E_DUPLICATETABLEID:\n\n MessageId: DB_E_DUPLICATETABLEID\n\n MessageText:\n\n The specified table already exists\n',
DB_E_TABLEINUSE: 'DB_E_TABLEINUSE:\n\n MessageId: DB_E_TABLEINUSE\n\n MessageText:\n\n The specified table was in use\n',
DB_E_NOLOCALE: 'DB_E_NOLOCALE:\n\n MessageId: DB_E_NOLOCALE\n\n MessageText:\n\n The specified locale ID was not supported\n',
DB_E_BADRECORDNUM: 'DB_E_BADRECORDNUM:\n\n MessageId: DB_E_BADRECORDNUM\n\n MessageText:\n\n The specified record number is invalid\n',
DB_E_BOOKMARKSKIPPED: 'DB_E_BOOKMARKSKIPPED:\n\n MessageId: DB_E_BOOKMARKSKIPPED\n\n MessageText:\n\n Although the bookmark was validly formed, no row could be found to\n match it\n',
DB_E_BADPROPERTYVALUE: 'DB_E_BADPROPERTYVALUE:\n\n MessageId: DB_E_BADPROPERTYVALUE\n\n MessageText:\n\n The value of a property was invalid\n',
DB_E_INVALID: 'DB_E_INVALID:\n\n MessageId: DB_E_INVALID\n\n MessageText:\n\n The rowset was not chaptered\n',
DB_E_BADACCESSORFLAGS: 'DB_E_BADACCESSORFLAGS:\n\n MessageId: DB_E_BADACCESSORFLAGS\n\n MessageText:\n\n Invalid accessor\n',
DB_E_BADSTORAGEFLAGS: 'DB_E_BADSTORAGEFLAGS:\n\n MessageId: DB_E_BADSTORAGEFLAGS\n\n MessageText:\n\n Invalid storage flags\n',
DB_E_BYREFACCESSORNOTSUPPORTED: 'DB_E_BYREFACCESSORNOTSUPPORTED:\n\n MessageId: DB_E_BYREFACCESSORNOTSUPPORTED\n\n MessageText:\n\n By-ref accessors are not supported by this provider\n',
DB_E_NULLACCESSORNOTSUPPORTED: 'DB_E_NULLACCESSORNOTSUPPORTED:\n\n MessageId: DB_E_NULLACCESSORNOTSUPPORTED\n\n MessageText:\n\n Null accessors are not supported by this provider\n',
DB_E_NOTPREPARED: 'DB_E_NOTPREPARED:\n\n MessageId: DB_E_NOTPREPARED\n\n MessageText:\n\n The command was not prepared\n',
DB_E_BADACCESSORTYPE: 'DB_E_BADACCESSORTYPE:\n\n MessageId: DB_E_BADACCESSORTYPE\n\n MessageText:\n\n The specified accessor was not a parameter accessor\n',
DB_E_WRITEONLYACCESSOR: 'DB_E_WRITEONLYACCESSOR:\n\n MessageId: DB_E_WRITEONLYACCESSOR\n\n MessageText:\n\n The given accessor was write-only\n',
DB_SEC_E_AUTH_FAILED: 'DB_SEC_E_AUTH_FAILED:\n\n MessageId: DB_SEC_E_AUTH_FAILED\n\n MessageText:\n\n Authentication failed\n',
DB_E_CANCELED: 'DB_E_CANCELED:\n\n MessageId: DB_E_CANCELED\n\n MessageText:\n\n The change was canceled during notification; no columns are changed\n',
DB_E_CHAPTERNOTRELEASED: 'DB_E_CHAPTERNOTRELEASED:\n@@@+ V2.0\n\n MessageId: DB_E_CHAPTERNOTRELEASED\n\n MessageText:\n\n The rowset was single-chaptered and the chapter was not released\n',
DB_E_BADSOURCEHANDLE: 'DB_E_BADSOURCEHANDLE:\n\n MessageId: DB_E_BADSOURCEHANDLE\n\n MessageText:\n\n Invalid source handle\n',
DB_E_PARAMUNAVAILABLE: 'DB_E_PARAMUNAVAILABLE:\n\n MessageId: DB_E_PARAMUNAVAILABLE\n\n MessageText:\n\n The provider cannot derive parameter info and SetParameterInfo has\n not been called\n',
DB_E_ALREADYINITIALIZED: 'DB_E_ALREADYINITIALIZED:\n\n MessageId: DB_E_ALREADYINITIALIZED\n\n MessageText:\n\n The data source object is already initialized\n',
DB_E_NOTSUPPORTED: 'DB_E_NOTSUPPORTED:\n\n MessageId: DB_E_NOTSUPPORTED\n\n MessageText:\n\n The provider does not support this method\n',
DB_E_MAXPENDCHANGESEXCEEDED: 'DB_E_MAXPENDCHANGESEXCEEDED:\n\n MessageId: DB_E_MAXPENDCHANGESEXCEEDED\n\n MessageText:\n\n The number of rows with pending changes has exceeded the set limit\n',
DB_E_BADORDINAL: 'DB_E_BADORDINAL:\n\n MessageId: DB_E_BADORDINAL\n\n MessageText:\n\n The specified column did not exist\n',
DB_E_PENDINGCHANGES: 'DB_E_PENDINGCHANGES:\n\n MessageId: DB_E_PENDINGCHANGES\n\n MessageText:\n\n There are pending changes on a row with a reference count of zero\n',
DB_E_DATAOVERFLOW: 'DB_E_DATAOVERFLOW:\n\n MessageId: DB_E_DATAOVERFLOW\n\n MessageText:\n\n A literal value in the command overflowed the range of the type of\n the associated column\n',
DB_E_BADHRESULT: 'DB_E_BADHRESULT:\n\n MessageId: DB_E_BADHRESULT\n\n MessageText:\n\n The supplied HRESULT was invalid\n',
DB_E_BADLOOKUPID: 'DB_E_BADLOOKUPID:\n\n MessageId: DB_E_BADLOOKUPID\n\n MessageText:\n\n The supplied LookupID was invalid\n',
DB_E_BADDYNAMICERRORID: 'DB_E_BADDYNAMICERRORID:\n\n MessageId: DB_E_BADDYNAMICERRORID\n\n MessageText:\n\n The supplied DynamicErrorID was invalid\n',
DB_E_PENDINGINSERT: 'DB_E_PENDINGINSERT:\n\n MessageId: DB_E_PENDINGINSERT\n\n MessageText:\n\n Unable to get visible data for a newly-inserted row that has not\n yet been updated\n',
DB_E_BADCONVERTFLAG: 'DB_E_BADCONVERTFLAG:\n\n MessageId: DB_E_BADCONVERTFLAG\n\n MessageText:\n\n Invalid conversion flag\n',
DB_E_BADPARAMETERNAME: 'DB_E_BADPARAMETERNAME:\n\n MessageId: DB_E_BADPARAMETERNAME\n\n MessageText:\n\n The given parameter name was unrecognized\n',
DB_E_MULTIPLESTORAGE: 'DB_E_MULTIPLESTORAGE:\n\n MessageId: DB_E_MULTIPLESTORAGE\n\n MessageText:\n\n Multiple storage objects can not be open simultaneously\n',
DB_E_CANTFILTER: 'DB_E_CANTFILTER:\n\n MessageId: DB_E_CANTFILTER\n\n MessageText:\n\n The requested filter could not be opened\n',
DB_E_CANTORDER: 'DB_E_CANTORDER:\n\n MessageId: DB_E_CANTORDER\n\n MessageText:\n\n The requested order could not be opened\n',
MD_E_BADTUPLE: 'MD_E_BADTUPLE:\n@@@+ V2.0\n\n MessageId: MD_E_BADTUPLE\n\n MessageText:\n\n Bad tuple\n',
MD_E_BADCOORDINATE: 'MD_E_BADCOORDINATE:\n\n MessageId: MD_E_BADCOORDINATE\n\n MessageText:\n\n Bad coordinate\n',
MD_E_INVALIDAXIS: 'MD_E_INVALIDAXIS:\n\n MessageId: MD_E_INVALIDAXIS\n\n MessageText:\n\n The given aixs was not valid for this Dataset\n',
MD_E_INVALIDCELLRANGE: 'MD_E_INVALIDCELLRANGE:\n\n MessageId: MD_E_INVALIDCELLRANGE\n\n MessageText:\n\n One or more of the given cell ordinals was invalid\n',
DB_E_NOCOLUMN: 'DB_E_NOCOLUMN:\n\n MessageId: DB_E_NOCOLUMN\n\n MessageText:\n\n The supplied columnID was invalid\n',
DB_E_COMMANDNOTPERSISTED: 'DB_E_COMMANDNOTPERSISTED:\n\n MessageId: DB_E_COMMANDNOTPERSISTED\n\n MessageText:\n\n The supplied command does not have a DBID\n',
DB_E_DUPLICATEID: 'DB_E_DUPLICATEID:\n\n MessageId: DB_E_DUPLICATEID\n\n MessageText:\n\n The supplied DBID already exists\n',
DB_E_OBJECTCREATIONLIMITREACHED: 'DB_E_OBJECTCREATIONLIMITREACHED:\n\n MessageId: DB_E_OBJECTCREATIONLIMITREACHED\n\n MessageText:\n\n The maximum number of Sessions supported by the provider has \n already been created. The consumer must release one or more \n currently held Sessions before obtaining a new Session Object\n',
DB_E_BADINDEXID: 'DB_E_BADINDEXID:\n\n MessageId: DB_E_BADINDEXID\n\n MessageText:\n\n The index ID is invalid\n',
DB_E_BADINITSTRING: 'DB_E_BADINITSTRING:\n\n MessageId: DB_E_BADINITSTRING\n\n MessageText:\n\n The initialization string specified does not conform to specificiation\n',
DB_E_NOPROVIDERSREGISTERED: 'DB_E_NOPROVIDERSREGISTERED:\n\n MessageId: DB_E_NOPROVIDERSREGISTERED\n\n MessageText:\n\n The OLE DB root enumerator did not return any providers that \n matched any of the SOURCES_TYPEs requested\n',
DB_E_MISMATCHEDPROVIDER: 'DB_E_MISMATCHEDPROVIDER:\n\n MessageId: DB_E_MISMATCHEDPROVIDER\n\n MessageText:\n\n The initialization string specifies a provider which does not match the currently active provider\n',
SEC_E_BADTRUSTEEID: 'SEC_E_BADTRUSTEEID:\n\n MessageId: SEC_E_BADTRUSTEEID\n\n MessageText:\n\n Invalid trustee value\n',
SEC_E_NOTRUSTEEID: 'SEC_E_NOTRUSTEEID:\n\n MessageId: SEC_E_NOTRUSTEEID\n\n MessageText:\n\n The trustee is not for the current data source\n',
SEC_E_NOMEMBERSHIPSUPPORT: 'SEC_E_NOMEMBERSHIPSUPPORT:\n\n MessageId: SEC_E_NOMEMBERSHIPSUPPORT\n\n MessageText:\n\n The trustee does not support memberships/collections\n',
SEC_E_INVALIDOBJECT: 'SEC_E_INVALIDOBJECT:\n\n MessageId: SEC_E_INVALIDOBJECT\n\n MessageText:\n\n The object is invalid or unknown to the provider\n',
SEC_E_NOOWNER: 'SEC_E_NOOWNER:\n\n MessageId: SEC_E_NOOWNER\n\n MessageText:\n\n No owner exists for the object\n',
SEC_E_INVALIDACCESSENTRYLIST: 'SEC_E_INVALIDACCESSENTRYLIST:\n\n MessageId: SEC_E_INVALIDACCESSENTRYLIST\n\n MessageText:\n\n The access entry list supplied is invalid\n',
SEC_E_INVALIDOWNER: 'SEC_E_INVALIDOWNER:\n\n MessageId: SEC_E_INVALIDOWNER\n\n MessageText:\n\n The trustee supplied as owner is invalid or unknown to the provider\n',
SEC_E_INVALIDACCESSENTRY: 'SEC_E_INVALIDACCESSENTRY:\n\n MessageId: SEC_E_INVALIDACCESSENTRY\n\n MessageText:\n\n The permission supplied in the access entry list is invalid\n',
DB_S_ROWLIMITEXCEEDED: 'DB_S_ROWLIMITEXCEEDED:\n\n MessageId: DB_S_ROWLIMITEXCEEDED\n\n MessageText:\n\n Fetching requested number of rows would have exceeded total number\n of active rows supported by the rowset\n',
DB_S_COLUMNTYPEMISMATCH: 'DB_S_COLUMNTYPEMISMATCH:\n\n MessageId: DB_S_COLUMNTYPEMISMATCH\n\n MessageText:\n\n One or more column types are incompatible; conversion errors will\n occur during copying\n',
DB_S_TYPEINFOOVERRIDDEN: 'DB_S_TYPEINFOOVERRIDDEN:\n\n MessageId: DB_S_TYPEINFOOVERRIDDEN\n\n MessageText:\n\n Parameter type information has been overridden by caller\n',
DB_S_BOOKMARKSKIPPED: 'DB_S_BOOKMARKSKIPPED:\n\n MessageId: DB_S_BOOKMARKSKIPPED\n\n MessageText:\n\n Skipped bookmark for deleted or non-member row\n',
DB_S_NONEXTROWSET: 'DB_S_NONEXTROWSET:\n@@@+ V2.0\n\n MessageId: DB_S_NONEXTROWSET\n\n MessageText:\n\n There are no more rowsets\n',
DB_S_ENDOFROWSET: 'DB_S_ENDOFROWSET:\n\n MessageId: DB_S_ENDOFROWSET\n\n MessageText:\n\n Reached start or end of rowset or chapter\n',
DB_S_COMMANDREEXECUTED: 'DB_S_COMMANDREEXECUTED:\n\n MessageId: DB_S_COMMANDREEXECUTED\n\n MessageText:\n\n The provider re-executed the command\n',
DB_S_BUFFERFULL: 'DB_S_BUFFERFULL:\n\n MessageId: DB_S_BUFFERFULL\n\n MessageText:\n\n Variable data buffer full\n',
DB_S_NORESULT: 'DB_S_NORESULT:\n\n MessageId: DB_S_NORESULT\n\n MessageText:\n\n There are no more results\n',
DB_S_CANTRELEASE: 'DB_S_CANTRELEASE:\n\n MessageId: DB_S_CANTRELEASE\n\n MessageText:\n\n Server cannot release or downgrade a lock until the end of the\n transaction\n',
DB_S_GOALCHANGED: 'DB_S_GOALCHANGED:\n@@@+ V2.5\n\n MessageId: DB_S_GOALCHANGED\n\n MessageText:\n\n Specified weight was not supported or exceeded the supported limit\n and was set to 0 or the supported limit\n',
DB_S_UNWANTEDOPERATION: 'DB_S_UNWANTEDOPERATION:\n@@@+ V1.5\n\n MessageId: DB_S_UNWANTEDOPERATION\n\n MessageText:\n\n Consumer is uninterested in receiving further notification calls for\n this reason\n',
DB_S_DIALECTIGNORED: 'DB_S_DIALECTIGNORED:\n\n MessageId: DB_S_DIALECTIGNORED\n\n MessageText:\n\n Input dialect was ignored and text was returned in different\n dialect\n',
DB_S_UNWANTEDPHASE: 'DB_S_UNWANTEDPHASE:\n\n MessageId: DB_S_UNWANTEDPHASE\n\n MessageText:\n\n Consumer is uninterested in receiving further notification calls for\n this phase\n',
DB_S_UNWANTEDREASON: 'DB_S_UNWANTEDREASON:\n\n MessageId: DB_S_UNWANTEDREASON\n\n MessageText:\n\n Consumer is uninterested in receiving further notification calls for\n this reason\n',
DB_S_ASYNCHRONOUS: 'DB_S_ASYNCHRONOUS:\n@@@+ V1.5\n\n MessageId: DB_S_ASYNCHRONOUS\n\n MessageText:\n\n The operation is being processed asynchronously\n',
DB_S_COLUMNSCHANGED: 'DB_S_COLUMNSCHANGED:\n\n MessageId: DB_S_COLUMNSCHANGED\n\n MessageText:\n\n In order to reposition to the start of the rowset, the provider had\n to reexecute the query; either the order of the columns changed or\n columns were added to or removed from the rowset\n',
DB_S_ERRORSRETURNED: 'DB_S_ERRORSRETURNED:\n\n MessageId: DB_S_ERRORSRETURNED\n\n MessageText:\n\n The method had some errors; errors have been returned in the error\n array\n',
DB_S_BADROWHANDLE: 'DB_S_BADROWHANDLE:\n\n MessageId: DB_S_BADROWHANDLE\n\n MessageText:\n\n Invalid row handle\n',
DB_S_DELETEDROW: 'DB_S_DELETEDROW:\n\n MessageId: DB_S_DELETEDROW\n\n MessageText:\n\n A given HROW referred to a hard-deleted row\n',
DB_S_TOOMANYCHANGES: 'DB_S_TOOMANYCHANGES:\n@@@+ V2.5\n\n MessageId: DB_S_TOOMANYCHANGES\n\n MessageText:\n\n The provider was unable to keep track of all the changes; the client\n must refetch the data associated with the watch region using another\n method\n',
DB_S_STOPLIMITREACHED: 'DB_S_STOPLIMITREACHED:\n\n MessageId: DB_S_STOPLIMITREACHED\n\n MessageText:\n\n Execution stopped because a resource limit has been reached; results\n obtained so far have been returned but execution cannot be resumed\n',
DB_S_LOCKUPGRADED: 'DB_S_LOCKUPGRADED:\n\n MessageId: DB_S_LOCKUPGRADED\n\n MessageText:\n\n A lock was upgraded from the value specified\n',
DB_S_PROPERTIESCHANGED: 'DB_S_PROPERTIESCHANGED:\n\n MessageId: DB_S_PROPERTIESCHANGED\n\n MessageText:\n\n One or more properties were changed as allowed by provider\n',
DB_S_ERRORSOCCURRED: 'DB_S_ERRORSOCCURRED:\n\n MessageId: DB_S_ERRORSOCCURRED\n\n MessageText:\n\n Errors occurred\n',
DB_S_PARAMUNAVAILABLE: 'DB_S_PARAMUNAVAILABLE:\n\n MessageId: DB_S_PARAMUNAVAILABLE\n\n MessageText:\n\n A specified parameter was invalid\n',
DB_S_MULTIPLECHANGES: 'DB_S_MULTIPLECHANGES:\n\n MessageId: DB_S_MULTIPLECHANGES\n\n MessageText:\n\n Updating this row caused more than one row to be updated in the\n data source\n',
}
|