Skip to content
Snippets Groups Projects
Commit a4f66cea authored by Lukáš Paukert's avatar Lukáš Paukert
Browse files

Fix path to database

parent 24b01f07
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ bool process(std::ofstream & ostream, const json & maxOccurrences)
{
try
{
SQLite::Database db("./../data/persistance/db", SQLite::OPEN_READWRITE|SQLite::OPEN_CREATE);
SQLite::Database db("./../data/persistance/docs_and_terms.db", SQLite::OPEN_READWRITE|SQLite::OPEN_CREATE);
SQLite::Statement query(db, "SELECT value FROM Term");
 
ostream << "{";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment