blob: 0880344d0fe9729296b9d506cf332590e8584595 (
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
|
#include "sqlquery.h"
#include "db/sqlerrorcodes.h"
#include "common/utils_sql.h"
#include "common/unused.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)
{
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()) + " = " + arg;
}
}
const QHash<QString, QVariant>& RowIdConditionBuilder::getQueryArgs() const
{
return queryArgs;
}
QString RowIdConditionBuilder::build()
{
return conditions.join(" AND ");
}
/********************** SqlQueryError ************************/
class API_EXPORT SqlQueryError : public SqlQuery
{
public:
SqlQueryError(const QString& errorText, int errorCode);
virtual ~SqlQueryError();
QString getErrorText();
int getErrorCode();
QStringList getColumnNames();
int columnCount();
protected:
SqlResultsRowPtr nextInternal();
bool hasNextInternal();
bool execInternal(const QList<QVariant>& args);
bool execInternal(const QHash<QString, QVariant>& args);
private:
QString errorText;
int errorCode = 0;
};
SqlQueryPtr SqlQuery::error(const QString& errorText, int errorCode)
{
return SqlQueryPtr(new SqlQueryError(errorText, errorCode));
}
SqlQueryError::SqlQueryError(const QString& errorText, int errorCode) :
errorText(errorText), errorCode(errorCode)
{
}
SqlQueryError::~SqlQueryError()
{
}
QString SqlQueryError::getErrorText()
{
return errorText;
}
int SqlQueryError::getErrorCode()
{
return errorCode;
}
QStringList SqlQueryError::getColumnNames()
{
return QStringList();
}
int SqlQueryError::columnCount()
{
return 0;
}
SqlResultsRowPtr SqlQueryError::nextInternal()
{
return SqlResultsRowPtr();
}
bool SqlQueryError::hasNextInternal()
{
return false;
}
bool SqlQueryError::execInternal(const QList<QVariant>& args)
{
UNUSED(args);
return false;
}
bool SqlQueryError::execInternal(const QHash<QString, QVariant>& args)
{
UNUSED(args);
return false;
}
|