// rddb.h // // Database driver with automatic reconnect // // (C) Copyright 2007 Dan Mills // (C) Copyright 2016 Fred Gleason // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 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 General Public // License along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // #ifndef RDDB_INC #define RDDB_INC #include #include #include #include class RDSqlDatabaseStatus : public QObject { Q_OBJECT signals: void logText(RDConfig::LogPriority prio,const QString &msg); void reconnected(); void connectionFailed (); private: RDSqlDatabaseStatus (); bool discon; friend RDSqlDatabaseStatus * RDDbStatus(); public: void sendRecon(); void sendDiscon(QString query); }; class RDSqlQuery : public QSqlQuery { public: RDSqlQuery(const QString &query=QString::null,bool reconnect=true); static QVariant run(const QString &sql,bool *ok=NULL); static bool apply(const QString &sql,QString *err_msg=NULL); static int rows(const QString &sql); }; // Setup the default database, returns true on success. // if error is non NULL, an error string will be appended to it // if there is a problem. QSqlDatabase * RDInitDb(unsigned *schema,QString *error=NULL); // Return a handle to the database status object. RDSqlDatabaseStatus * RDDbStatus(); #endif