-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.cpp
97 lines (81 loc) · 2.38 KB
/
database.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#include "database.h"
#include <QString>
#include <QVariant>
#include <QMessageBox>
/*methods:
1. Choose question id
2. Get question text by id
3. Add (another) answer
4. Add seance to seance log*/
database *db = new database ();
database::database ()
{
db = QSqlDatabase::addDatabase("QMYSQL");
db.setDatabaseName("mydb");
}
int database::connect ()
{
db.setUserName ("root");
db.setHostName ("localhost");
db.setPassword ("toor");
if (!db.open ())
QMessageBox::critical (0, "error", db.lastError().text(),QMessageBox::Cancel);
query = new QSqlQuery (db);
return 0;
}
int database::add_knowledge(QString table, QString text)
{
query->prepare (QString("INSERT INTO %1s (%1_id, text) VALUES (':text');").arg(table));
// enough for '); ?
query->bindValue (":text", text);
return query->exec();
}
QString database::get_question()
{
query->prepare("CALL choose(0,:q)");
query->bindValue(":q",question_id);
query->prepare("SELECT text FROM questions WHERE question_id = :q");
query->bindValue(":q",question_id);
query->exec();
return query->value(0).toString();
}
QString database::get_solution()
{
QVariant tmp;
QString result = "nope";
query->prepare("CALL choose(1,:p)");
query->bindValue(":p",tmp);
double priori = tmp.toDouble();
if (priori > 0.9)
{
query->prepare("SELECT text FROM solutions WHERE solution_id = :p");
query->bindValue(":p",priori);
query->exec();
result = query->value(0).toString();
}
return result;
}
int database::add_answer(int answer)
{
if (seance_id == 0)
{
query->exec("INSERT INTO seances (solution) VALUES (NULL);");
query->exec("SELECT MAX(seance_id) FROM seances;");
seance_id = query->value(0).toInt();
}
return query->exec(QString("INSERT INTO seance_log (seance_id,question_id,answer)\
VALUES (%1,%2,%3);").arg(seance_id,question_id,answer));
}
void database::process_seance(int solution_id)
{
if (solution_id)
{
query->exec(QString("UPDATE seances SET solution_id = %1\
WHERE seance_id = %2").arg(solution_id,seance_id));
}
else
{
query->exec(QString("DELETE FROM seance_log WHERE seance_id = %1;").arg(seance_id));
query->exec(QString("DELETE FROM seances WHERE seance_id = %1;").arg(seance_id));
}
}