-
Notifications
You must be signed in to change notification settings - Fork 1
/
dbabstract.h
66 lines (51 loc) · 1.44 KB
/
dbabstract.h
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
#ifndef DBABSTRACT_H
#define DBABSTRACT_H
#include <QtSql>
#include<QDebug>
#define DB_ABSTRACT_HPP\
template < class Arg, class ... Args> void query(Arg arg, Args ... args);\
template <class ... Args> void query( Args ... args );
#define DB_ABSTRACT_CPP(classname)\
\
template < class Arg, class ... Args> void db##classname ::query(Arg arg, Args ... args){\
this->q.exec(arg);\
qDebug() << "query::" << arg;\
qDebug() << q.lastError().text();\
this->query(args...);\
}\
template < class ... Args> void db##classname ::query(Args ... args ){\
this->query(args...);\
}
/*
* but what for?xD
* */
class dbAbstract
{
protected:
bool error=false;
QSqlDatabase db;
bool getError(void){
return this->error;
}
void getDB(const char * dbname="local.sqlite", const char * driver="QSQLITE");
void virtual query( void ) = 0;
void virtual install(void)=0;
public:
void reopen(void){
this->q = QSqlQuery(this->db);
}
int getIDFromNickname(const char * nickname){
this->q.prepare("Select id from Friends where nick=:nick");
this->q.bindValue(":nick", nickname);
this->q.exec();
if( q.next() ){
qDebug() << "ID FROM " << nickname << ":" << q.value(0).toInt();
qDebug() << q.lastError();
return q.value(0).toInt();
}
return -1;
}
QSqlQuery q;
~dbAbstract();
};
#endif // DBABSTRACT_H