Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
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
4#ifndef QTSQLGLOBAL_H
5#define QTSQLGLOBAL_H
6
7#if 0
8#pragma qt_class(QSql)
9#endif
10
11#include <QtCore/qglobal.h>
12#include <QtSql/qtsql-config.h>
13#include <QtSql/qtsqlexports.h>
14
16
17namespace QSql
18{
20 {
22 AfterLastRow = -2
23 };
24
26 {
27 In = 0x00000001,
28 Out = 0x00000002,
30 Binary = 0x00000004
31 };
33
35 {
36 Tables = 0x01,
38 Views = 0x04,
39 AllTables = 0xff
40 };
41
50}
51
52Q_DECLARE_OPERATORS_FOR_FLAGS(QSql::ParamType)
53
55
56#endif // QSQL_H
ParamType
Definition helpers.h:13
@ AfterLastRow
Definition qtsqlglobal.h:22
@ BeforeFirstRow
Definition qtsqlglobal.h:21
@ SystemTables
Definition qtsqlglobal.h:37
@ Views
Definition qtsqlglobal.h:38
@ Tables
Definition qtsqlglobal.h:36
@ AllTables
Definition qtsqlglobal.h:39
ParamTypeFlag
Definition qtsqlglobal.h:26
@ InOut
Definition qtsqlglobal.h:29
@ Binary
Definition qtsqlglobal.h:30
NumericalPrecisionPolicy
Definition qtsqlglobal.h:43
@ LowPrecisionInt32
Definition qtsqlglobal.h:44
@ LowPrecisionDouble
Definition qtsqlglobal.h:46
@ LowPrecisionInt64
Definition qtsqlglobal.h:45
@ HighPrecision
Definition qtsqlglobal.h:48
Combined button and popup list for selecting options.
#define Q_DECLARE_FLAGS(Flags, Enum)
Definition qflags.h:174
#define Q_DECLARE_OPERATORS_FOR_FLAGS(Flags)
Definition qflags.h:194