-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdbresult.cpp
More file actions
53 lines (43 loc) · 780 Bytes
/
Copy pathdbresult.cpp
File metadata and controls
53 lines (43 loc) · 780 Bytes
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
#include "dbresult.h"
#include <QJsonDocument>
#include <QJsonArray>
using namespace DB;
DbResult::DbResult()
{
}
DbResult::DbResult(const QList<QVariant>& data)
{
for (const QVariant& var: data)
{
Data_.append(QJsonObject::fromVariantMap(var.toMap()));
}
}
bool DbResult::isEmpty() const
{
return Data_.isEmpty();
}
QJsonObject DbResult::first() const
{
return data(0);
}
int DbResult::size() const
{
return Data_.size();
}
QJsonObject DbResult::data(int pos) const
{
if (isEmpty() || pos < 0 || pos >= size())
{
return QJsonObject();
}
return Data_[pos].toObject();
}
QJsonArray DbResult::data() const
{
return Data_;
}
QString DbResult::toJsonString() const
{
QJsonDocument doc(Data_);
return QString::fromUtf8(doc.toJson(QJsonDocument::Compact));
}