summaryrefslogtreecommitdiffstats
path: root/src/svnqt/cache/sqlite3/qsql_sqlite3.h
blob: 85cc22fe537d4683edb89111fc9c103efe1410cd (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
/****************************************************************************
**
** Definition of STQLite driver classes.
**
** Copyright (C) 1992-2003 Trolltech AS. 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_STQLITE3_H
#define TQSQL_STQLITE3_H

#include <tqsqldriver.h>
#include <tqsqlresult.h>
#include <tqsqlrecord.h>
#include <tqsqlindex.h>
#include "qsqlcachedresult.h"

typedef TQVariant TQSqlVariant;

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

class TQSQLite3DriverPrivate;
class TQSQLite3ResultPrivate;
class TQSQLite3Driver;
struct sqlite3;

class TQSQLite3Result : public TQSqlCachedResult
{
    friend class TQSQLite3Driver;
    friend class TQSQLite3ResultPrivate;
public:
    TQSQLite3Result(const TQSQLite3Driver* db);
    ~TQSQLite3Result();

protected:
    bool gotoNext(TQSqlCachedResult::ValueCache& row, int idx);
    bool reset (const TQString& query);
    int size();
    int numRowsAffected();

private:
    TQSQLite3ResultPrivate* d;
};

class TQSQLite3Driver : public TQSqlDriver
{
    friend class TQSQLite3Result;
public:
    TQSQLite3Driver(TQObject *tqparent = 0, const char *name = 0);
    TQSQLite3Driver(sqlite3 *connection, TQObject *tqparent = 0, const char *name = 0);
    ~TQSQLite3Driver();
    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:
    TQSQLite3DriverPrivate* d;
};
#endif