-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuery.cpp
590 lines (520 loc) · 13.9 KB
/
Query.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
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
/**
* Query.cpp
*
* Rewritten / author: 2016-02-19 / [email protected]
* Published / author: 2005-08-12 / [email protected]
* Copyright (C) 2015-2018 Michael Griffin
* Copyright (C) 2001-2006 Anders Hedstrom
* This program is made available under the terms of the GNU GPL.
*/
#ifdef _WIN32
//#pragma warning(disable:4786)
#endif
#include <sqlite3.h>
#include <iostream>
#include <string>
#include <map>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <exception>
#include "Database.h"
#include "Query.h"
namespace SQLW
{
Query::Query(Database& dbin)
: m_db(dbin)
, odb(dbin.addDatabasePool())
, res(nullptr)
, row(false)
, rowcount(0)
, m_tmpstr("")
, m_last_query("")
, cache_rc(0)
, cache_rc_valid(false)
, m_row_count(0)
, m_num_cols(0)
{
/*
if(m_db.isConnected())
std::cout << "qry() is connected" << std::endl;
else
std::cout << "qry() is not connected" << std::endl;
if(odb)
std::cout << "odb is connected" << std::endl;
else
std::cout << "odb is not connected" << std::endl;*/
}
Query::Query(Database& dbin,const std::string& sql)
: m_db(dbin)
, odb(dbin.addDatabasePool())
, res(nullptr)
, row(false)
, rowcount(0)
, m_tmpstr("")
, m_last_query("")
, cache_rc(0)
, cache_rc_valid(false)
, m_row_count(0)
, m_num_cols(0)
{
execute(sql);
}
Query::~Query()
{
std::cout << "~Query" << std::endl;
if(res)
{
//GetDatabase().error(*this, "sqlite3_finalize in destructor");
sqlite3_finalize(res);
}
res = nullptr;
row = false;
cache_rc_valid = false;
if(odb)
{
m_db.freeDatabasePool(odb);
}
else
{
std::cout << "~unable to free database" << std::endl;
}
std::map<std::string, int>().swap(m_nmap);
/*
if(odb && res)
{
sqlite3_finalize(res);
res = nullptr;
row = false;
cache_rc_valid = false;
}
// clear column names
std::map<std::string, int>().swap(m_nmap);*/
}
Database& Query::getDatabase() const
{
return m_db;
}
/*
The sqlite3_finalize() routine deallocates a prepared SQL statement.
All prepared statements must be finalized before the database can be closed.
*/
bool Query::execute(const std::string& sql)
{
// query, no result
m_last_query = sql;
if(odb && res)
{
getDatabase().databaseError(*this, "execute: query busy");
}
if(odb && !res)
{
const char *s = nullptr;
int rc = sqlite3_prepare_v2(odb->db, sql.c_str(), sql.size(), &res, &s);
if(rc != SQLITE_OK)
{
getDatabase().databaseError(*this, "execute: prepare query failed");
return false;
}
if(!res)
{
getDatabase().databaseError(*this, "execute: query failed");
return false;
}
rc = sqlite3_step(res); // execute
sqlite3_finalize(res); // deallocate statement
res = nullptr;
switch(rc)
{
case SQLITE_BUSY:
getDatabase().databaseError(*this, "execute: database busy");
return false;
case SQLITE_DONE:
case SQLITE_ROW:
return true;
case SQLITE_ERROR:
getDatabase().databaseError(*this, sqlite3_errmsg(odb->db));
return false;
case SQLITE_MISUSE:
getDatabase().databaseError(*this, "execute: database misuse");
return false;
}
getDatabase().databaseError(*this, "execute: unknown result code");
}
return false;
}
// methods using db specific api calls
sqlite3_stmt *Query::getResult(const std::string& sql)
{
// query, result
m_last_query = sql;
if(odb && res)
{
getDatabase().databaseError(*this, "get_result: query busy");
}
if(odb && !res)
{
const char *s = nullptr;
int rc = sqlite3_prepare_v2(odb->db, sql.c_str(), sql.size(), &res, &s);
if(rc != SQLITE_OK)
{
getDatabase().databaseError(*this, "get_result: prepare query failed");
return nullptr;
}
if(!res)
{
getDatabase().databaseError(*this, "get_result: query failed");
return nullptr;
}
// get column names from result
{
int i = 0;
// Don't require Free Result, do this automatically before running new queries!
std::map<std::string, int>().swap(m_nmap);
do
{
const char *p = sqlite3_column_name(res, i);
if(!p)
break;
//m_nmap[p] = ++i;
m_nmap.insert(std::make_pair(p, ++i));
}
while(true);
m_num_cols = i;
}
cache_rc = sqlite3_step(res);
cache_rc_valid = true;
m_row_count = (cache_rc == SQLITE_ROW) ? 1 : 0;
}
return res;
}
void Query::freeResult()
{
if(odb && res)
{
sqlite3_finalize(res);
}
// Always reset anyways!
res = nullptr;
row = false;
cache_rc_valid = false;
std::map<std::string,int>().swap(m_nmap);
}
bool Query::fetchRow()
{
rowcount = 0;
row = false;
if(odb && res)
{
int rc = cache_rc_valid ? cache_rc : sqlite3_step(res); // execute
cache_rc_valid = false;
switch(rc)
{
case SQLITE_BUSY:
getDatabase().databaseError(*this, "execute: database busy");
return false;
case SQLITE_DONE:
return false;
case SQLITE_ROW:
row = true;
return true;
case SQLITE_ERROR:
getDatabase().databaseError(*this, sqlite3_errmsg(odb -> db));
return false;
case SQLITE_MISUSE:
getDatabase().databaseError(*this, "execute: database misuse");
return false;
}
getDatabase().databaseError(*this, "execute: unknown result code");
}
return false;
}
/*
* Get the last Inerted Row ID for Primary Key Tables.
*/
sqlite_int64 Query::getInsertId()
{
if(odb)
{
return sqlite3_last_insert_rowid(odb->db);
}
else
{
return 0;
}
}
long Query::getNumRows()
{
return odb && res ? m_row_count : 0;
}
int Query::getNumCols()
{
return m_num_cols;
}
bool Query::isNull(int x)
{
if(odb && res && row)
{
if(sqlite3_column_type(res, x) == SQLITE_NULL)
{
return true;
}
}
return false;
}
const char *Query::getString(const std::string& x)
{
int index = m_nmap[x] - 1;
if(index >= 0)
{
return getString(index);
}
queryError("Column name lookup failure: " + x);
return "";
}
const char *Query::getString(int x)
{
if(odb && res && row && x < sqlite3_column_count(res))
{
const unsigned char *tmp = sqlite3_column_text(res, x);
return tmp ? (const char *)tmp : "";
}
return "";
}
const char *Query::getString()
{
return getString(rowcount++);
}
double Query::getNumber(const std::string& x)
{
int index = m_nmap[x] - 1;
if(index >= 0)
{
return getNumber(index);
}
queryError("Column name lookup failure: " + x);
return 0;
}
double Query::getNumber(int x)
{
if(odb && res && row)
{
return sqlite3_column_double(res, x);
}
return 0;
}
long Query::getValue(const std::string& x)
{
int index = m_nmap[x] - 1;
if(index >= 0)
{
return getValue(index);
}
queryError("Column name lookup failure: " + x);
return 0;
}
long Query::getValue(int x)
{
if(odb && res && row)
{
return sqlite3_column_int(res, x);
}
return 0;
}
double Query::getNumber()
{
return getNumber(rowcount++);
}
long Query::getValue()
{
return getValue(rowcount++);
}
unsigned long Query::getUnsignedValue(const std::string& x)
{
int index = m_nmap[x] - 1;
if(index >= 0)
{
return getUnsignedValue(index);
}
queryError("Column name lookup failure: " + x);
return 0;
}
unsigned long Query::getUnsignedValue(int x)
{
unsigned long l = 0;
if(odb && res && row)
{
l = sqlite3_column_int(res, x);
}
return l;
}
unsigned long Query::getUnsignedValue()
{
return getUnsignedValue(rowcount++);
}
int64_t Query::getBigInt(const std::string& x)
{
int index = m_nmap[x] - 1;
if(index >= 0)
{
return getBigInt(index);
}
queryError("Column name lookup failure: " + x);
return 0;
}
int64_t Query::getBigInt(int x)
{
if(odb && res && row)
{
return sqlite3_column_int64(res, x);
}
return 0;
}
int64_t Query::getBigInt()
{
return getBigInt(rowcount++);
}
uint64_t Query::getUnsignedBitInt(const std::string& x)
{
int index = m_nmap[x] - 1;
if(index >= 0)
{
return getUnsignedBitInt(index);
}
queryError("Column name lookup failure: " + x);
return 0;
}
uint64_t Query::getUnsignedBitInt(int x)
{
uint64_t l = 0;
if(odb && res && row)
{
l = sqlite3_column_int64(res, x);
}
return l;
}
uint64_t Query::getUnsignedBitInt()
{
return getUnsignedBitInt(rowcount++);
}
double Query::exeGetResultDouble(const std::string& sql)
{
double l = 0;
if(getResult(sql))
{
if(fetchRow())
{
l = getNumber();
}
freeResult();
}
return l;
}
long Query::exeGetResultLong(const std::string& sql)
{
long l = 0;
if(getResult(sql))
{
if(fetchRow())
{
l = getValue();
}
freeResult();
}
return l;
}
const char *Query::exeGetCharString(const std::string& sql)
{
m_tmpstr = "";
if(getResult(sql))
{
if(fetchRow())
{
m_tmpstr = getString();
}
freeResult();
}
return m_tmpstr.c_str(); // %! changed from 1.0 which didn't return nullptr on failed query
}
const std::string& Query::getLastQuery()
{
return m_last_query;
}
std::string Query::getError()
{
if(odb)
{
return sqlite3_errmsg(odb->db);
}
return "";
}
int Query::getErrorCode()
{
if(odb)
{
return sqlite3_errcode(odb->db);
}
return 0;
}
bool Query::isConnected()
{
return odb ? true : false;
}
void Query::queryError(const std::string& msg)
{
getDatabase().databaseError(*this, msg);
}
/**
* Create a new Executate Transaction
*/
bool Query::executeTransaction(const std::vector<std::string> &statements)
{
bool result = false;
char *errorMsg = 0;
if (!odb)
{
return result;
}
//Start a transaction with: sqlite3_exec(db, "BEGIN", 0, 0, 0);
int rc = sqlite3_exec(odb->db, "BEGIN;", 0, 0, 0);
if(rc != SQLITE_OK)
{
std::cout << "BEGIN Transaction Failed." << std::endl;
// queryError("BEGIN Transaction Failed. ");
return result;
}
for(std::string::size_type i = 0; i < statements.size(); i++)
{
// Execute Statement
rc = sqlite3_exec(odb->db, statements[i].c_str(), nullptr, 0, &errorMsg);
if(rc != SQLITE_OK)
{
std::cout << "Statement in Transaction Failed: " << errorMsg << std::endl;
sqlite3_free(errorMsg);
// rollback all update/insert to sqlite
rc = sqlite3_exec(odb->db, "ROLLBACK;", 0, 0, 0);
if(rc != SQLITE_OK)
{
std::cout << "Unable to Rollback Transaction." << std::endl;
}
else
{
std::cout << "Rollback Transaction Completed." << std::endl;
}
return result;
}
}
//Commit a transaction with: sqlite3_exec(db, "COMMIT", 0, 0, 0);
rc = sqlite3_exec(odb->db, "COMMIT;", 0, 0, 0);
if(rc != SQLITE_OK)
{
std::cout << "COMMIT Transaction Failed." << std::endl;
return result;
}
else
{
result = true;
}
return result;
}
} // namespace SQLW