blob: 94799d9629ba521ee0a859446c69cd0d6e2a2bc0 (
plain) (
blame)
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
#include "sqlquery.h"
#include "db/sqlerrorcodes.h"
#include "common/utils_sql.h"
SqlQuery::~SqlQuery()
{
}
bool SqlQuery::execute()
{
if (queryArgs.type() == QVariant::Hash)
return execInternal(queryArgs.toHash());
else
return execInternal(queryArgs.toList());
}
SqlResultsRowPtr SqlQuery::next()
{
if (preloaded)
{
if (preloadedRowIdx >= preloadedData.size())
return SqlResultsRowPtr();
return preloadedData[preloadedRowIdx++];
}
return nextInternal();
}
bool SqlQuery::hasNext()
{
if (preloaded)
return (preloadedRowIdx < preloadedData.size());
return hasNextInternal();
}
qint64 SqlQuery::rowsAffected()
{
return affected;
}
QList<SqlResultsRowPtr> SqlQuery::getAll()
{
if (!preloaded)
preload();
return preloadedData;
}
void SqlQuery::preload()
{
if (preloaded)
return;
QList<SqlResultsRowPtr> allRows;
while (hasNextInternal())
allRows << nextInternal();
preloadedData = allRows;
preloaded = true;
preloadedRowIdx = 0;
}
QVariant SqlQuery::getSingleCell()
{
SqlResultsRowPtr row = next();
if (row.isNull())
return QVariant();
return row->value(0);
}
bool SqlQuery::isError()
{
return getErrorCode() != 0;
}
bool SqlQuery::isInterrupted()
{
return SqlErrorCode::isInterrupted(getErrorCode());
}
RowId SqlQuery::getInsertRowId()
{
return insertRowId;
}
qint64 SqlQuery::getRegularInsertRowId()
{
return insertRowId["ROWID"].toLongLong();
}
QString SqlQuery::getQuery() const
{
return query;
}
void SqlQuery::setFlags(Db::Flags flags)
{
this->flags = flags;
}
void SqlQuery::clearArgs()
{
queryArgs = QVariant();
}
void SqlQuery::setArgs(const QList<QVariant>& args)
{
queryArgs = args;
}
void SqlQuery::setArgs(const QHash<QString, QVariant>& args)
{
queryArgs = args;
}
void RowIdConditionBuilder::setRowId(const RowId& rowId, Dialect dialect)
{
static const QString argTempalate = QStringLiteral(":rowIdArg%1");
QString arg;
QHashIterator<QString,QVariant> it(rowId);
int i = 0;
while (it.hasNext())
{
it.next();
arg = argTempalate.arg(i++);
queryArgs[arg] = it.value();
conditions << wrapObjIfNeeded(it.key(), dialect) + " = " + arg;
}
}
const QHash<QString, QVariant>& RowIdConditionBuilder::getQueryArgs()
{
return queryArgs;
}
QString RowIdConditionBuilder::build()
{
return conditions.join(" AND ");
}
|