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 91
|
/*
* Copyright 2005-2008 Fabrice Colin
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef _SQLITE_BASE_H
#define _SQLITE_BASE_H
#include <string>
#include <vector>
#include <sqlite3.h>
#include "SQLDB.h"
/// A row in a SQLite table.
class SQLiteRow : public SQLRow
{
public:
SQLiteRow(const std::vector<std::string> &rowColumns, unsigned int nColumns);
virtual ~SQLiteRow();
virtual std::string getColumn(unsigned int nColumn) const;
protected:
std::vector<std::string> m_columns;
};
/// Results extracted from a SQLite database.
class SQLiteResults : public SQLResults
{
public:
SQLiteResults(char **results, unsigned long nRows, unsigned int nColumns);
virtual ~SQLiteResults();
virtual std::string getColumnName(unsigned int nColumn) const;
virtual SQLRow *nextRow(void);
protected:
char **m_results;
private:
SQLiteResults(const SQLiteResults &other);
SQLiteResults &operator=(const SQLiteResults &other);
};
/// Simple C++ wrapper around the SQLite API.
class SQLiteBase : public SQLDB
{
public:
SQLiteBase(const std::string &databaseName, bool onDemand = true);
virtual ~SQLiteBase();
static bool check(const std::string &databaseName);
virtual bool isOpen(void) const;
virtual bool executeSimpleStatement(const std::string &sql);
virtual SQLResults *executeStatement(const char *sqlFormat, ...);
protected:
bool m_onDemand;
sqlite3 *m_pDatabase;
void open(void);
void close(void);
private:
SQLiteBase(const SQLiteBase &other);
SQLiteBase &operator=(const SQLiteBase &other);
};
#endif // _SQLITE_BASE_H
|