123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #ifndef DBSETUP_H
- #define DBSETUP_H
- #include <QCoreApplication>
- class ADataBaseSetup
- {
- public:
- static void debug();
- static bool createDatabase();
- static bool fillTemplates();
- static bool importDefaultData();
- static bool resetToDefault();
- static bool commitData(QVector<QStringList> fromCSV, const QString &tableName);
- private:
- static bool createSchemata(const QStringList &statements);
- };
- #endif
|