Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qtsqlglobal.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4
5#ifndef QTSQLGLOBAL_H
6#define QTSQLGLOBAL_H
7
8#if 0
9#pragma qt_class(QSql)
10#endif
11
12#include <QtCore/qglobal.h>
13#include <QtSql/qtsql-config.h>
14#include <QtSql/qtsqlexports.h>
15
16QT_BEGIN_NAMESPACE
17
18namespace QSql
19{
21 {
24 };
25
27 {
28 In = 0x00000001,
29 Out = 0x00000002,
31 Binary = 0x00000004
32 };
33 Q_DECLARE_FLAGS(ParamType, ParamTypeFlag)
34
36 {
37 Tables = 0x01,
39 Views = 0x04,
40 AllTables = 0xff
41 };
42
51}
52
53Q_DECLARE_OPERATORS_FOR_FLAGS(QSql::ParamType)
54
55QT_END_NAMESPACE
56
57#endif // QSQL_H
@ AfterLastRow
Definition qtsqlglobal.h:23
@ BeforeFirstRow
Definition qtsqlglobal.h:22
@ SystemTables
Definition qtsqlglobal.h:38
@ Views
Definition qtsqlglobal.h:39
@ Tables
Definition qtsqlglobal.h:37
@ AllTables
Definition qtsqlglobal.h:40
ParamTypeFlag
Definition qtsqlglobal.h:27
@ InOut
Definition qtsqlglobal.h:30
@ Binary
Definition qtsqlglobal.h:31
NumericalPrecisionPolicy
Definition qtsqlglobal.h:44
@ LowPrecisionInt32
Definition qtsqlglobal.h:45
@ LowPrecisionDouble
Definition qtsqlglobal.h:47
@ LowPrecisionInt64
Definition qtsqlglobal.h:46
@ HighPrecision
Definition qtsqlglobal.h:49