cid#1640468 Dereference after null check
[LibreOffice.git] / connectivity / source / inc / propertyids.hxx
blobb10b4f008e64bc009d9b7b5c7964bb3f9e2ac2aa
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #pragma once
22 // this define has to be set to split the names into different dll's or so's
23 // every dll has his own set of property names
24 #include <rtl/ustring.hxx>
25 #include <map>
26 #include <connectivity/dbtoolsdllapi.hxx>
28 namespace dbtools
30 class OOO_DLLPUBLIC_DBTOOLS OPropertyMap
32 std::map<sal_Int32, OUString> m_aPropertyMap;
33 public:
34 OPropertyMap();
35 const OUString& getNameByIndex(sal_Int32 _nIndex) const;
39 enum PropertyId
41 PROPERTY_ID_QUERYTIMEOUT = 1,
42 PROPERTY_ID_MAXFIELDSIZE = 2,
43 PROPERTY_ID_MAXROWS = 3,
44 PROPERTY_ID_CURSORNAME = 4,
45 PROPERTY_ID_RESULTSETCONCURRENCY = 5,
46 PROPERTY_ID_RESULTSETTYPE = 6,
47 PROPERTY_ID_FETCHDIRECTION = 7,
48 PROPERTY_ID_FETCHSIZE = 8,
49 PROPERTY_ID_ESCAPEPROCESSING = 9,
50 PROPERTY_ID_USEBOOKMARKS = 10,
52 // Column
53 PROPERTY_ID_NAME = 11,
54 PROPERTY_ID_TYPE = 12,
55 PROPERTY_ID_TYPENAME = 13,
56 PROPERTY_ID_PRECISION = 14,
57 PROPERTY_ID_SCALE = 15,
58 PROPERTY_ID_ISNULLABLE = 16,
59 PROPERTY_ID_ISAUTOINCREMENT = 17,
60 PROPERTY_ID_ISROWVERSION = 18,
61 PROPERTY_ID_DESCRIPTION = 19,
62 PROPERTY_ID_DEFAULTVALUE = 20,
64 PROPERTY_ID_REFERENCEDTABLE = 21,
65 PROPERTY_ID_UPDATERULE = 22,
66 PROPERTY_ID_DELETERULE = 23,
67 PROPERTY_ID_CATALOG = 24,
68 PROPERTY_ID_ISUNIQUE = 25,
69 PROPERTY_ID_ISPRIMARYKEYINDEX = 26,
70 PROPERTY_ID_ISCLUSTERED = 27,
71 PROPERTY_ID_ISASCENDING = 28,
72 PROPERTY_ID_SCHEMANAME = 29,
73 PROPERTY_ID_CATALOGNAME = 30,
75 PROPERTY_ID_COMMAND = 31,
76 PROPERTY_ID_CHECKOPTION = 32,
77 PROPERTY_ID_PASSWORD = 33,
78 PROPERTY_ID_RELATEDCOLUMN = 34,
80 PROPERTY_ID_FUNCTION = 35,
81 PROPERTY_ID_TABLENAME = 36,
82 PROPERTY_ID_REALNAME = 37,
83 PROPERTY_ID_DBASEPRECISIONCHANGED = 38,
84 PROPERTY_ID_ISCURRENCY = 39,
85 PROPERTY_ID_ISBOOKMARKABLE = 40,
87 PROPERTY_ID_HY010 = 41,
88 PROPERTY_ID_LABEL = 42,
89 PROPERTY_ID_DELIMITER = 43,
90 PROPERTY_ID_FORMATKEY = 44,
91 PROPERTY_ID_LOCALE = 45,
93 PROPERTY_ID_AUTOINCREMENTCREATION = 46,
95 PROPERTY_ID_PRIVILEGES = 47,
96 PROPERTY_ID_HAVINGCLAUSE = 48,
98 PROPERTY_ID_ISSIGNED = 49,
99 PROPERTY_ID_AGGREGATEFUNCTION = 50,
100 PROPERTY_ID_ISSEARCHABLE = 51,
102 PROPERTY_ID_APPLYFILTER = 52,
103 PROPERTY_ID_FILTER = 53,
104 PROPERTY_ID_MASTERFIELDS = 54,
105 PROPERTY_ID_DETAILFIELDS = 55,
106 PROPERTY_ID_FIELDTYPE = 56,
107 PROPERTY_ID_VALUE = 57,
108 PROPERTY_ID_ACTIVE_CONNECTION = 58
111 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */