RecipeDB/main.cpp

24 lines
617 B
C++

#include "userInterface/mainwindow.h"
#include <QApplication>
#include "model/database/database.h"
#include "model/database/recipedatabase.h"
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();
RecipeDatabase recipeDB("recipes");
return a.exec();
}