1 | /* OLE DB error codes.
|
---|
2 | *
|
---|
3 | * Copyright 2009 Huw Davies
|
---|
4 | *
|
---|
5 | * This library is free software; you can redistribute it and/or
|
---|
6 | * modify it under the terms of the GNU Lesser General Public
|
---|
7 | * License as published by the Free Software Foundation; either
|
---|
8 | * version 2.1 of the License, or (at your option) any later version.
|
---|
9 | *
|
---|
10 | * This library is distributed in the hope that it will be useful,
|
---|
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
13 | * Lesser General Public License for more details.
|
---|
14 | *
|
---|
15 | * You should have received a copy of the GNU Lesser General Public
|
---|
16 | * License along with this library; if not, write to the Free Software
|
---|
17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
---|
18 | */
|
---|
19 |
|
---|
20 | /*
|
---|
21 | * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
22 | * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
|
---|
23 | * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
24 | * a choice of LGPL license versions is made available with the language indicating
|
---|
25 | * that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
26 | * of the LGPL is applied is otherwise unspecified.
|
---|
27 | */
|
---|
28 |
|
---|
29 | #ifndef __WINE_OLEDBERR_H
|
---|
30 | #define __WINE_OLEDBERR_H
|
---|
31 |
|
---|
32 | #define DB_E_BADBINDINFO 0x80040e08
|
---|
33 |
|
---|
34 | #define DB_E_NOTFOUND 0x80040e19
|
---|
35 |
|
---|
36 | #define DB_E_UNSUPPORTEDCONVERSION 0x80040e1d
|
---|
37 |
|
---|
38 | #define DB_E_ERRORSOCCURRED 0x80040e21
|
---|
39 |
|
---|
40 | #define DB_E_BADSTORAGEFLAG 0x80040e26
|
---|
41 | #define DB_E_BADCOMPAREOP 0x80040e27
|
---|
42 | #define DB_E_BADSTATUSVALUE 0x80040e28
|
---|
43 | #define DB_E_CANTSCROLLBACKWARDS 0x80040e29
|
---|
44 | #define DB_E_BADREGIONHANDLE 0x80040e2a
|
---|
45 | #define DB_E_NONCONTIGUOUSRANGE 0x80040e2b
|
---|
46 | #define DB_E_INVALIDTRANSITION 0x80040e2c
|
---|
47 | #define DB_E_NOTASUBREGION 0x80040e2d
|
---|
48 | #define DB_E_MULTIPLESTATEMENTS 0x80040e2e
|
---|
49 | #define DB_E_INTEGRITYVIOLATION 0x80040e2f
|
---|
50 | #define DB_E_BADTYPENAME 0x80040e30
|
---|
51 | #define DB_E_ABORTLIMITREACHED 0x80040e31
|
---|
52 | #define DB_E_ROWSETINCOMMAND 0x80040e32
|
---|
53 | #define DB_E_CANTTRANSLATE 0x80040e33
|
---|
54 | #define DB_E_DUPLICATEINDEXID 0x80040e34
|
---|
55 | #define DB_E_NOINDEX 0x80040e35
|
---|
56 | #define DB_E_INDEXINUSE 0x80040e36
|
---|
57 | #define DB_E_NOTABLE 0x80040e37
|
---|
58 | #define DB_E_CONCURRENCYVIOLATION 0x80040e38
|
---|
59 |
|
---|
60 | #define DB_E_TABLEINUSE 0x80040e40
|
---|
61 | #define DB_E_NOLOCALE 0x80040e41
|
---|
62 | #define DB_E_BADRECORDNUM 0x80040e42
|
---|
63 | #define DB_E_BOOKMARKSKIPPED 0x80040e43
|
---|
64 | #define DB_E_BADPROPERTYVALUE 0x80040e44
|
---|
65 | #define DB_E_INVALID 0x80040e45
|
---|
66 | #define DB_E_BADACCESSORFLAGS 0x80040e46
|
---|
67 | #define DB_E_BADSTORAGEFLAGS 0x80040e47
|
---|
68 | #define DB_E_BYREFACCESSORNOTSUPPORTED 0x80040e48
|
---|
69 | #define DB_E_NULLACCESSORNOTSUPPORTED 0x80040e49
|
---|
70 | #define DB_E_NOTPREPARED 0x80040e4a
|
---|
71 | #define DB_E_BADACCESSORTYPE 0x80040e4b
|
---|
72 | #define DB_E_WRITEONLYACCESSOR 0x80040e4c
|
---|
73 | #define DB_SEC_E_AUTH_FAILED 0x80040e4d
|
---|
74 | #define DB_E_CANCELED 0x80040e4e
|
---|
75 |
|
---|
76 | #define DB_E_ALREADYINITIALIZED 0x80040e52
|
---|
77 | #define DB_E_DATAOVERFLOW 0x80040e57
|
---|
78 |
|
---|
79 | #define DB_E_MISMATCHEDPROVIDER 0x80040e75
|
---|
80 |
|
---|
81 | #define DB_S_ERRORSOCCURRED 0x00040eda
|
---|
82 |
|
---|
83 | #endif /* __WINE_OLEDBERR_H */
|
---|