RecipeDB/main.cpp

30 lines
930 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"
#include "utils/fileutils.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");
recipeDB.storeIngredient(Ingredient("Apple", "Fruit"));
recipeDB.storeIngredient(Ingredient("Corn", "Vegetable"));
recipeDB.executeSQL("SELECT * FROM ingredient;").printData();
FileUtils::saveInstruction(1, Instruction("This is some plain text with no HTML markup."));
return a.exec();
2018-02-02 09:00:46 +00:00
}