1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** Contact: Qt Software Information ([email protected])
|
---|
5 | **
|
---|
6 | ** This file is part of the QtSql module of the Qt Toolkit.
|
---|
7 | **
|
---|
8 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
9 | ** Commercial Usage
|
---|
10 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
11 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
12 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
13 | ** a written agreement between you and Nokia.
|
---|
14 | **
|
---|
15 | ** GNU Lesser General Public License Usage
|
---|
16 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
17 | ** General Public License version 2.1 as published by the Free Software
|
---|
18 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
19 | ** packaging of this file. Please review the following information to
|
---|
20 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
21 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
22 | **
|
---|
23 | ** In addition, as a special exception, Nokia gives you certain
|
---|
24 | ** additional rights. These rights are described in the Nokia Qt LGPL
|
---|
25 | ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
|
---|
26 | ** package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you are unsure which license is appropriate for your use, please
|
---|
37 | ** contact the sales department at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | #ifndef QSQL_SQLITE2_H
|
---|
43 | #define QSQL_SQLITE2_H
|
---|
44 |
|
---|
45 | #include <QtSql/qsqldriver.h>
|
---|
46 | #include <QtSql/qsqlresult.h>
|
---|
47 | #include <QtSql/qsqlrecord.h>
|
---|
48 | #include <QtSql/qsqlindex.h>
|
---|
49 | #include <QtSql/private/qsqlcachedresult_p.h>
|
---|
50 |
|
---|
51 | #if defined (Q_OS_WIN32)
|
---|
52 | # include <QtCore/qt_windows.h>
|
---|
53 | #endif
|
---|
54 |
|
---|
55 | struct sqlite;
|
---|
56 |
|
---|
57 | QT_BEGIN_HEADER
|
---|
58 |
|
---|
59 | QT_BEGIN_NAMESPACE
|
---|
60 |
|
---|
61 | class QSQLite2DriverPrivate;
|
---|
62 | class QSQLite2ResultPrivate;
|
---|
63 | class QSQLite2Driver;
|
---|
64 |
|
---|
65 | class QSQLite2Result : public QSqlCachedResult
|
---|
66 | {
|
---|
67 | friend class QSQLite2Driver;
|
---|
68 | friend class QSQLite2ResultPrivate;
|
---|
69 | public:
|
---|
70 | explicit QSQLite2Result(const QSQLite2Driver* db);
|
---|
71 | ~QSQLite2Result();
|
---|
72 | QVariant handle() const;
|
---|
73 |
|
---|
74 | protected:
|
---|
75 | bool gotoNext(QSqlCachedResult::ValueCache& row, int idx);
|
---|
76 | bool reset (const QString& query);
|
---|
77 | int size();
|
---|
78 | int numRowsAffected();
|
---|
79 | QSqlRecord record() const;
|
---|
80 | void virtual_hook(int id, void *data);
|
---|
81 |
|
---|
82 | private:
|
---|
83 | QSQLite2ResultPrivate* d;
|
---|
84 | };
|
---|
85 |
|
---|
86 | class QSQLite2Driver : public QSqlDriver
|
---|
87 | {
|
---|
88 | Q_OBJECT
|
---|
89 | friend class QSQLite2Result;
|
---|
90 | public:
|
---|
91 | explicit QSQLite2Driver(QObject *parent = 0);
|
---|
92 | explicit QSQLite2Driver(sqlite *connection, QObject *parent = 0);
|
---|
93 | ~QSQLite2Driver();
|
---|
94 | bool hasFeature(DriverFeature f) const;
|
---|
95 | bool open(const QString & db,
|
---|
96 | const QString & user,
|
---|
97 | const QString & password,
|
---|
98 | const QString & host,
|
---|
99 | int port,
|
---|
100 | const QString & connOpts);
|
---|
101 | bool open(const QString & db,
|
---|
102 | const QString & user,
|
---|
103 | const QString & password,
|
---|
104 | const QString & host,
|
---|
105 | int port) { return open (db, user, password, host, port, QString()); }
|
---|
106 | void close();
|
---|
107 | QSqlResult *createResult() const;
|
---|
108 | bool beginTransaction();
|
---|
109 | bool commitTransaction();
|
---|
110 | bool rollbackTransaction();
|
---|
111 | QStringList tables(QSql::TableType) const;
|
---|
112 |
|
---|
113 | QSqlRecord record(const QString& tablename) const;
|
---|
114 | QSqlIndex primaryIndex(const QString &table) const;
|
---|
115 | QVariant handle() const;
|
---|
116 | QString escapeIdentifier(const QString &identifier, IdentifierType) const;
|
---|
117 |
|
---|
118 | private:
|
---|
119 | QSQLite2DriverPrivate* d;
|
---|
120 | };
|
---|
121 |
|
---|
122 | QT_END_NAMESPACE
|
---|
123 |
|
---|
124 | QT_END_HEADER
|
---|
125 |
|
---|
126 | #endif // QSQL_SQLITE2_H
|
---|