summaryrefslogtreecommitdiff
path: root/mysqlc/source/mysqlc_propertyids.hxx
blob: 6c37b4da25a9411ff26106b2afabb5903a8a0325 (plain)
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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#ifndef INCLUDED_MYSQLC_SOURCE_MYSQLC_PROPERTYIDS_HXX
#define INCLUDED_MYSQLC_SOURCE_MYSQLC_PROPERTYIDS_HXX

// this define has to be set to split the names into different dll's or so's
// every dll has his own set of property names
#include <rtl/ustring.hxx>
#include <map>

namespace connectivity
{
namespace mysqlc
{
enum
{
    PROPERTY_ID_FIRST = 0,
    PROPERTY_ID_QUERYTIMEOUT,
    PROPERTY_ID_MAXFIELDSIZE,
    PROPERTY_ID_MAXROWS,
    PROPERTY_ID_CURSORNAME,
    PROPERTY_ID_RESULTSETCONCURRENCY,
    PROPERTY_ID_RESULTSETTYPE,
    PROPERTY_ID_FETCHDIRECTION,
    PROPERTY_ID_FETCHSIZE,
    PROPERTY_ID_ESCAPEPROCESSING,
    PROPERTY_ID_USEBOOKMARKS,
// Column
    PROPERTY_ID_NAME,
    PROPERTY_ID_TYPE,
    PROPERTY_ID_TYPENAME,
    PROPERTY_ID_PRECISION,
    PROPERTY_ID_SCALE,
    PROPERTY_ID_ISNULLABLE,
    PROPERTY_ID_ISAUTOINCREMENT,
    PROPERTY_ID_ISROWVERSION,
    PROPERTY_ID_DESCRIPTION,
    PROPERTY_ID_DEFAULTVALUE,

    PROPERTY_ID_REFERENCEDTABLE,
    PROPERTY_ID_UPDATERULE,
    PROPERTY_ID_DELETERULE,
    PROPERTY_ID_CATALOG,
    PROPERTY_ID_ISUNIQUE,
    PROPERTY_ID_ISPRIMARYKEYINDEX,
    PROPERTY_ID_ISCLUSTERED,
    PROPERTY_ID_ISASCENDING,
    PROPERTY_ID_SCHEMANAME,
    PROPERTY_ID_CATALOGNAME,

    PROPERTY_ID_COMMAND,
    PROPERTY_ID_CHECKOPTION,
    PROPERTY_ID_PASSWORD,
    PROPERTY_ID_RELATEDCOLUMN,

    PROPERTY_ID_FUNCTION,
    PROPERTY_ID_TABLENAME,
    PROPERTY_ID_REALNAME,
    PROPERTY_ID_DBASEPRECISIONCHANGED,
    PROPERTY_ID_ISCURRENCY,
    PROPERTY_ID_ISBOOKMARKABLE,

    PROPERTY_ID_INVALID_INDEX,
    PROPERTY_ID_ERRORMSG_SEQUENCE,
    PROPERTY_ID_HY010,
    PROPERTY_ID_HY0000,
    PROPERTY_ID_DELIMITER,
    PROPERTY_ID_FORMATKEY,
    PROPERTY_ID_LOCALE,
    PROPERTY_ID_IM001,

    PROPERTY_ID_AUTOINCREMENTCREATION,

    PROPERTY_ID_PRIVILEGES,

    PROPERTY_ID_LAST
};
}/* mysqlc */
}/* connectivity */

#endif // INCLUDED_MYSQLC_SOURCE_MYSQLC_PROPERTYIDS_HXX


/* vim:set shiftwidth=4 softtabstop=4 expandtab: */