2016-05-12 14:08:58 +08:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Nut project.
|
|
|
|
|
** https://github.com/HamedMasafi/Nut
|
|
|
|
|
**
|
|
|
|
|
** Nut 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, either version 3 of the License, or
|
|
|
|
|
** (at your option) any later version.
|
|
|
|
|
**
|
|
|
|
|
** Nut 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 Lesser General Public License for more details.
|
|
|
|
|
**
|
|
|
|
|
** You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
** along with Nut. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef DATABASE_H
|
|
|
|
|
#define DATABASE_H
|
|
|
|
|
|
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
|
#include <QtCore/QList>
|
|
|
|
|
#include <QtSql/QSqlDatabase>
|
|
|
|
|
|
|
|
|
|
#include "defines.h"
|
|
|
|
|
#include "tableset.h"
|
|
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
|
|
class DatabaseModel;
|
|
|
|
|
class DatabasePrivate;
|
|
|
|
|
class TableSetBase;
|
|
|
|
|
class SqlGeneratorBase;
|
|
|
|
|
class NUT_EXPORT Database : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
DatabasePrivate *d_ptr;
|
|
|
|
|
Q_DECLARE_PRIVATE(Database)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
Database(QObject *parent = 0);
|
|
|
|
|
|
|
|
|
|
bool open();
|
|
|
|
|
|
|
|
|
|
QSqlQuery exec(QString sql);
|
|
|
|
|
|
|
|
|
|
void add(TableSetBase *);
|
|
|
|
|
void saveChanges();
|
2016-05-21 16:09:03 +08:00
|
|
|
void cleanUp();
|
2016-05-12 14:08:58 +08:00
|
|
|
|
|
|
|
|
QString databaseName() const;
|
|
|
|
|
QString hostName() const;
|
|
|
|
|
int port() const;
|
|
|
|
|
QString userName() const;
|
|
|
|
|
QString password() const;
|
|
|
|
|
QString connectionName() const;
|
|
|
|
|
QString driver() const;
|
|
|
|
|
|
|
|
|
|
DatabaseModel model() const;
|
|
|
|
|
QString tableName(QString className);
|
|
|
|
|
|
|
|
|
|
SqlGeneratorBase *sqlGenertor() const;
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void setDatabaseName(QString databaseName);
|
|
|
|
|
void setHostName(QString hostName);
|
|
|
|
|
void setPort(int port);
|
|
|
|
|
void setUserName(QString userName);
|
|
|
|
|
void setPassword(QString password);
|
|
|
|
|
void setConnectionName(QString connectionName);
|
|
|
|
|
void setDriver(QString driver);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QSet<TableSetBase*> tableSets;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
#endif // DATABASE_H
|