summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/sql/drivers/sqlite/tqsql_sqlite.h
blob: 61000896675609ca60f39b423331c1243426fdd5 (plain)
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 STQLite driver classes.
**
** Copyright (C) 2010 Timothy Pearson and (C) 1992-2008 Trolltech ASA.
**
** 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_STQLITE_H
#define TQSQL_STQLITE_H

#include <tqsqldriver.h>
#include <tqsqlresult.h>
#include <tqsqlrecord.h>
#include <tqsqlindex.h>
#include "../cache/tqsqlcachedresult.h"

#if (TQT_VERSION-0 >= 0x030000)
typedef TQVariant TQSqlVariant;
#endif

#if defined (TQ_OS_WIN32)
# include <tqt_windows.h>
#endif

class TQSTQLiteDriverPrivate;
class TQSTQLiteResultPrivate;
class TQSTQLiteDriver;
struct sqlite;

class TQSTQLiteResult : public TQtSqlCachedResult
{
    friend class TQSTQLiteDriver;
    friend class TQSTQLiteResultPrivate;
public:
    TQSTQLiteResult(const TQSTQLiteDriver* db);
    ~TQSTQLiteResult();

protected:
    bool gotoNext(TQtSqlCachedResult::RowCache* row);    
    bool reset (const TQString& query);
    int size();
    int numRowsAffected();

private:
    TQSTQLiteResultPrivate* d;
};

class TQSTQLiteDriver : public TQSqlDriver
{
    friend class TQSTQLiteResult;
public:
    TQSTQLiteDriver(TQObject *parent = 0, const char *name = 0);
    TQSTQLiteDriver(sqlite *connection, TQObject *parent = 0, const char *name = 0);
    ~TQSTQLiteDriver();
    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:
    TQSTQLiteDriverPrivate* d;
};
#endif