You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesvn/src/svnqt/cache/sqlite3/qsql_sqlite3.h

90 lines
2.6 KiB

/****************************************************************************
**
** Definition of SQLite 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_SQLITE3_H
#define TQSQL_SQLITE3_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 *parent = 0, const char *name = 0);
TQSQLite3Driver(sqlite3 *connection, TQObject *parent = 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();
bool ping();
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