RecipeDB/main.cpp

24 lines
617 B
C++
Raw Normal View History

#include "userInterface/mainwindow.h"
2018-02-02 09:00:46 +00:00
#include <QApplication>
2018-02-02 10:41:36 +00:00
2018-02-12 13:24:11 +00:00
#include "model/database/database.h"
#include "model/database/recipedatabase.h"
2018-02-02 09:00:46 +00:00
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
//TESTING CODE
Database db("test.db");
printf("Table exists: %d\n", db.tableExists("ingredients"));
db.executeSQL("SELECT * FROM ingredients;").printData();
db.executeSQL("PRAGMA table_info('ingredients');").printData();
db.executeSQL("SELECT name FROM ingredients WHERE foodGroup == 'fruit';").printData();
2018-02-02 10:41:36 +00:00
RecipeDatabase recipeDB("recipes");
return a.exec();
2018-02-02 09:00:46 +00:00
}