-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqtsqlglobal.h
56 lines (44 loc) · 1.02 KB
/
qtsqlglobal.h
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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QTSQLGLOBAL_H
#define QTSQLGLOBAL_H
#if 0
#pragma qt_class(QSql)
#endif
#include <QtCore/qglobal.h>
#include <QtSql/qtsql-config.h>
#include <QtSql/qtsqlexports.h>
QT_BEGIN_NAMESPACE
namespace QSql
{
enum Location
{
BeforeFirstRow = -1,
AfterLastRow = -2
};
enum ParamTypeFlag
{
In = 0x00000001,
Out = 0x00000002,
InOut = In | Out,
Binary = 0x00000004
};
Q_DECLARE_FLAGS(ParamType, ParamTypeFlag)
enum TableType
{
Tables = 0x01,
SystemTables = 0x02,
Views = 0x04,
AllTables = 0xff
};
enum NumericalPrecisionPolicy
{
LowPrecisionInt32 = 0x01,
LowPrecisionInt64 = 0x02,
LowPrecisionDouble = 0x04,
HighPrecision = 0
};
}
Q_DECLARE_OPERATORS_FOR_FLAGS(QSql::ParamType)
QT_END_NAMESPACE
#endif // QSQL_H