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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/****************************************************************************
**
** Definition of SQLite driver classes.
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of the sql module of the TQt GUI Toolkit.
** EDITIONS: FREE, ENTERPRISE
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#ifndef TQSQL_SQLITE_H
#define TQSQL_SQLITE_H
#include <qsqldriver.h>
#include <qsqlresult.h>
#include <qsqlrecord.h>
#include <qsqlindex.h>
#include "../cache/qsqlcachedresult.h"
#if (QT_VERSION-0 >= 0x030000)
typedef TQVariant TQSqlVariant;
#endif
#if defined (Q_OS_WIN32)
# include <qt_windows.h>
#endif
class TQSQLiteDriverPrivate;
class TQSQLiteResultPrivate;
class TQSQLiteDriver;
struct sqlite;
class TQSQLiteResult : public TQtSqlCachedResult
{
friend class TQSQLiteDriver;
friend class TQSQLiteResultPrivate;
public:
TQSQLiteResult(const TQSQLiteDriver* db);
~TQSQLiteResult();
protected:
bool gotoNext(TQtSqlCachedResult::RowCache* row);
bool reset (const TQString& query);
int size();
int numRowsAffected();
private:
TQSQLiteResultPrivate* d;
};
class TQSQLiteDriver : public TQSqlDriver
{
friend class TQSQLiteResult;
public:
TQSQLiteDriver(TQObject *parent = 0, const char *name = 0);
TQSQLiteDriver(sqlite *connection, TQObject *parent = 0, const char *name = 0);
~TQSQLiteDriver();
bool hasFeature(DriverFeature f) const;
bool open(const TQString & db,
const TQString & user,
const TQString & password,
const TQString & host,
int port,
const TQString & connOpts);
bool open( const TQString & db,
const TQString & user,
const TQString & password,
const TQString & host,
int port ) { return open (db, user, password, host, port, TQString()); }
void close();
TQSqlQuery createQuery() const;
bool beginTransaction();
bool commitTransaction();
bool rollbackTransaction();
TQStringList tables(const TQString& user) const;
TQSqlRecord record(const TQString& tablename) const;
TQSqlRecordInfo recordInfo(const TQString& tablename) const;
TQSqlIndex primaryIndex(const TQString &table) const;
TQSqlRecord record(const TQSqlQuery& query) const;
TQSqlRecordInfo recordInfo(const TQSqlQuery& query) const;
private:
TQSQLiteDriverPrivate* d;
};
#endif
|