diff options
Diffstat (limited to 'krecipes/src/backends/SQLite/literecipedb.h')
-rw-r--r-- | krecipes/src/backends/SQLite/literecipedb.h | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/krecipes/src/backends/SQLite/literecipedb.h b/krecipes/src/backends/SQLite/literecipedb.h new file mode 100644 index 0000000..c83672f --- /dev/null +++ b/krecipes/src/backends/SQLite/literecipedb.h @@ -0,0 +1,60 @@ +/*************************************************************************** +* Copyright (C) 2003-2004 by * +* Unai Garro ([email protected]) * +* Jason Kivlighn ([email protected]) * +* Cyril Bosselut ([email protected]) * +* * +* 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. * +***************************************************************************/ + +#ifndef LITERECIPEDB_H +#define LITERECIPEDB_H + +#include "backends/qsqlrecipedb.h" + +#include <qstring.h> + +#include "qsql_sqlite.h" + +#define SQLITE_DRIVER "KRESQLITE" + +class LiteRecipeDB : public QSqlRecipeDB +{ + + Q_OBJECT + +private: + void createDB( void ); + +public: + LiteRecipeDB( const QString &DBName = DEFAULT_DB_NAME ); + ~LiteRecipeDB( void ); + + virtual int lastInsertID(); + + virtual void createTable( const QString &tableName ); + virtual void givePermissions(const QString&, const QString&, const QString&, const QString&){} //no permissions in this backend + +protected: + virtual QSqlDriver *qsqlDriver() const + { + return new KreSQLiteDriver(); + } + + virtual QString escapeAndEncode( const QString &s ) const; + +private: + virtual void portOldDatabases( float version ); + virtual QStringList backupCommand() const; + virtual QStringList restoreCommand() const; + + void addColumn( const QString &new_table_sql, const QString &new_col_info, const QString &default_value, const QString &table_name, int col_index ); +}; + + + + +#endif |