Projekt

Allgemein

Profil

Herunterladen als
Herunterladen (2,98 KB) Statistiken
| Zweig: | Revision:
81c23b56 Christian Ehringfeld
/*
6899f814 Christian Ehringfeld
* Copyright (C) 2015 Christian Ehringfeld <c.ehringfeld@t-online.de>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation.
*
* 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 General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
81c23b56 Christian Ehringfeld
#ifndef DATABASE_H
#define DATABASE_H
40cf6a8c SebastianDiel
//#include "../../../../QtCipherSqlitePlugin/QtCipherSqlitePlugin/sqlitecipher/sqlite3/sqlite3.h"
//#include "../../../../QtCipherSqlitePlugin/QtCipherSqlitePlugin/sqlitecipher/sqlite3/sqlite3ext.h"
81c23b56 Christian Ehringfeld
#include <QtSql/QSqlDatabase>
#include <QtSql/QSqlDriver>
#include <QtSql/QSqlQuery>
#include <QDebug>
#include <QtSql/QSqlError>
#include <QStringList>
#include <QList>
#include <QString>
#include <QDebug>
#include "enums/databasetype.h"
45135a14 Christian Ehringfeld
#include "logger.h"
6899f814 Christian Ehringfeld
namespace CuteEntityManager {
f12670e9 Christian Ehringfeld
#ifdef QT_DEBUG
#define DEFAULTMSGTYPE MsgType::DEBUG
#else
#define DEFAULTMSGTYPE MsgType::CRITICAL
#endif
426974c6 Christian Ehringfeld
class Database {
81c23b56 Christian Ehringfeld
426974c6 Christian Ehringfeld
public:
01fe6db3 Christian Ehringfeld
Database(QSqlDatabase database, bool logQueries = false, bool logErrors = true,
MsgType type = DEFAULTMSGTYPE);
81c23b56 Christian Ehringfeld
~Database();
a82e4cea Christian Ehringfeld
Database(QString databaseType, QString connectionName = QString(""),
QString hostname = QString(""),
QString databasename = QString("") ,
QString username = QString(""), QString password = QString(""),
54538efb Christian Ehringfeld
qint64 port = 0, bool logQueries = false,
3938a37e Christian Ehringfeld
bool logErrors = true, QString databaseOptions = "",
MsgType type = DEFAULTMSGTYPE);
81c23b56 Christian Ehringfeld
QSqlDatabase getDatabase();
QString getConnectionName();
QSqlQuery getQuery();
QSqlQuery getQuery(const QString &prepare);
bool transaction(const QStringList &queries);
bool transaction(QList<QSqlQuery> &queries);
d568923d Christian Ehringfeld
bool exec(const QString &query);
81c23b56 Christian Ehringfeld
bool exec(QStringList queries);
d568923d Christian Ehringfeld
bool exec(QSqlQuery &query);
81c23b56 Christian Ehringfeld
bool exec(QList<QSqlQuery> queries);
d568923d Christian Ehringfeld
void debugQuery(const QSqlQuery &query) const;
81c23b56 Christian Ehringfeld
bool select(QSqlQuery &query);
QSqlQuery select(const QString &query);
11bbe9a6 Christian Ehringfeld
void startTransaction();
bool commitTransaction();
3938a37e Christian Ehringfeld
void logMsg(const QString &value);
95b60eb2 Christian Ehringfeld
bool rollbackTransaction();
3820ae33 Christian Ehringfeld
static DatabaseType getDatabaseType(QString s);
57d6da31 Christian Ehringfeld
static Schema *getSchema(DatabaseType db,
01fe6db3 Christian Ehringfeld
QSharedPointer<Database> database);
3938a37e Christian Ehringfeld
Logger *getLogger() const;
40cf6a8c SebastianDiel
QSqlDatabase getQSqlDatabase() {return database;}
01fe6db3 Christian Ehringfeld
private:
QSqlDatabase database;
QString connectionName;
bool supportTransactions;
Logger *logger = nullptr;
void init();
void initLogger(bool logQueries, bool logErrors, MsgType type);
bool logQueries;
bool logErrors;
81c23b56 Christian Ehringfeld
};
}
#endif // DATABASE_H