[196] | 1 | /****************************************************************************
|
---|
| 2 | **
|
---|
| 3 | ** Definition of QSql class
|
---|
| 4 | **
|
---|
| 5 | ** Created : 2000-11-03
|
---|
| 6 | **
|
---|
| 7 | ** Copyright (C) 2005-2007 Trolltech ASA. All rights reserved.
|
---|
| 8 | **
|
---|
| 9 | ** This file is part of the sql module of the Qt GUI Toolkit.
|
---|
| 10 | **
|
---|
| 11 | ** This file may be distributed under the terms of the Q Public License
|
---|
| 12 | ** as defined by Trolltech ASA of Norway and appearing in the file
|
---|
| 13 | ** LICENSE.QPL included in the packaging of this file.
|
---|
| 14 | **
|
---|
| 15 | ** This file may be distributed and/or modified under the terms of the
|
---|
| 16 | ** GNU General Public License version 2 as published by the Free Software
|
---|
| 17 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
| 18 | ** packaging of this file.
|
---|
| 19 | **
|
---|
| 20 | ** Licensees holding valid Qt Enterprise Edition licenses may use this
|
---|
| 21 | ** file in accordance with the Qt Commercial License Agreement provided
|
---|
| 22 | ** with the Software.
|
---|
| 23 | **
|
---|
| 24 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
---|
| 25 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
---|
| 26 | **
|
---|
| 27 | ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
|
---|
| 28 | ** information about Qt Commercial License Agreements.
|
---|
| 29 | ** See http://www.trolltech.com/qpl/ for QPL licensing information.
|
---|
| 30 | ** See http://www.trolltech.com/gpl/ for GPL licensing information.
|
---|
| 31 | **
|
---|
| 32 | ** Contact info@trolltech.com if any conditions of this licensing are
|
---|
| 33 | ** not clear to you.
|
---|
| 34 | **
|
---|
| 35 | **********************************************************************/
|
---|
| 36 |
|
---|
| 37 | #ifndef QSQL_H
|
---|
| 38 | #define QSQL_H
|
---|
| 39 |
|
---|
| 40 | #ifndef QT_H
|
---|
| 41 | #include "qglobal.h"
|
---|
| 42 | #endif // QT_H
|
---|
| 43 |
|
---|
| 44 | #if !defined( QT_MODULE_SQL ) || defined( QT_LICENSE_PROFESSIONAL )
|
---|
| 45 | #define QM_EXPORT_SQL
|
---|
| 46 | #else
|
---|
| 47 | #define QM_EXPORT_SQL Q_EXPORT
|
---|
| 48 | #endif
|
---|
| 49 |
|
---|
| 50 | #ifndef QT_NO_SQL
|
---|
| 51 |
|
---|
| 52 | class QM_EXPORT_SQL QSql
|
---|
| 53 | {
|
---|
| 54 | public:
|
---|
| 55 | QSql() {}
|
---|
| 56 | enum Op {
|
---|
| 57 | None = -1,
|
---|
| 58 | Insert = 0,
|
---|
| 59 | Update = 1,
|
---|
| 60 | Delete = 2
|
---|
| 61 | };
|
---|
| 62 |
|
---|
| 63 | enum Location {
|
---|
| 64 | BeforeFirst = -1,
|
---|
| 65 | AfterLast = -2
|
---|
| 66 | };
|
---|
| 67 |
|
---|
| 68 | enum Confirm {
|
---|
| 69 | Cancel = -1,
|
---|
| 70 | No = 0,
|
---|
| 71 | Yes = 1
|
---|
| 72 | };
|
---|
| 73 |
|
---|
| 74 | enum ParameterType {
|
---|
| 75 | In = 1,
|
---|
| 76 | Out = 2,
|
---|
| 77 | InOut = 3 //InOut = In | Out
|
---|
| 78 | };
|
---|
| 79 |
|
---|
| 80 | enum TableType {
|
---|
| 81 | Tables = 0x01,
|
---|
| 82 | SystemTables = 0x02,
|
---|
| 83 | Views = 0x04,
|
---|
| 84 | AllTables = 0xff
|
---|
| 85 | };
|
---|
| 86 |
|
---|
| 87 | private: // Disabled copy constructor and operator=
|
---|
| 88 | #if defined(Q_DISABLE_COPY)
|
---|
| 89 | QSql( const QSql & );
|
---|
| 90 | QSql &operator=( const QSql & );
|
---|
| 91 | #endif
|
---|
| 92 |
|
---|
| 93 | };
|
---|
| 94 |
|
---|
| 95 | #endif
|
---|
| 96 | #endif
|
---|