-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsqlitepp.h
404 lines (340 loc) · 10.4 KB
/
sqlitepp.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
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
/* Copyright (C)
* 2012 - Paul Weingardt
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#ifndef SQLITEPP_H
#define SQLITEPP_H
#include <sqlite3.h>
#include <time.h>
#include <stdlib.h>
#include <map>
#include <string>
namespace sqlitepp {
/**
* @brief converts a double into a string
*/
std::string doubleToString(const double value);
/**
* @brief converts a float into a string
*/
std::string floatToString(const float value);
/**
* @brief converts an integer into a string
* @return
*/
std::string intToString(const int value);
class Statement;
/**
* @brief used for transactions
*/
enum TransactionFlags {DEFERRED, IMMEDIATE, EXCLUSIVE};
/**
* @brief returned from step()
*
* ROW = a new row is available
* DONE = there are no more results available
* UNKNOWN = unknown
*/
enum StepValue {ROW, DONE, UNKNOWN};
/**
* @brief Indicates the mode. This means, that
* you still can create an insert statement and
* execute it, but an error will occur.
*/
enum OpenFlags {READONLY, READWRITE, CREATE};
/**
* @brief The main database class
*/
class Database {
friend class Statement;
private:
/**
* @brief initializes all fields
*/
void init(void);
/**
* @brief indicates, if a database has been opened
*/
bool isopen;
/**
* @brief indicates, if there is an active transaction
*/
bool transaction;
/**
* @brief the sqlite3* pointer
*/
sqlite3* database;
/**
* @brief the last result from sqlite3
*/
int lastResult;
inline void checkDatabaseOpened() const;
public:
/**
* @brief empty constructor. Does not open a database
*/
Database(void);
/**
* @brief Opens a sqlite3 database with the passed flag
*
* @param path
* @param flag
*/
Database(const std::string& path, const OpenFlags flag = CREATE);
/**
* @brief destructor
*/
~Database(void);
/**
* @brief Opens a database with the passed flag
*
* @param path
* @param flag
*/
void open(const std::string& path, const OpenFlags flag = CREATE);
/**
* @brief returns true, when a database has been opened, false otherwise
*/
bool isOpen(void);
/**
* @brief closes the database
*/
void close(void);
/**
* @brief activates foreign keys
*/
void activateForeignKeys(void);
/**
* @brief deactivates foreign keys
*/
void deactivateForeignKeys(void);
/**
* @brief executes a single statement without return values
*
* @param sql SQL statement
*/
int exec(const std::string& sql);
/**
* @brief Begins a transaction
*/
void beginTransaction(const TransactionFlags = DEFERRED);
/**
* @brief commits a transaction
*/
void endTransaction(void);
/**
* @brief executes a rollback on the current transaction
*/
void rollback(void);
/**
* @brief gets the last ID, that has been inserted
*
* @return
*/
int getLastRowId(void);
};
/**
* @brief A prepared statement
*/
class Statement {
private:
/**
* @brief the last result returned by sqlite
*/
int lastResult;
/**
* @brief true if the statement has been finalized, false otherwise.
*
* also used to indicate, whether a statement has been prepared:
* prepared = !finalized
*/
bool finalized;
/**
* @brief the sqlite3 statement
*/
sqlite3_stmt* statement;
/**
* @brief the database reference
*/
Database& db;
/**
* @brief the columns, that has been selected, and their indices
*/
std::map<std::string, int> columns;
/**
* @brief performs a single step
*/
StepValue step(void);
/**
* @brief checks, if a statement has been prepared. Throws an exception, if not.
*/
inline void checkPrepared() const;
public:
/**
* @brief Default constructor
*
* @param db database, on which the statement is executed
*/
Statement(Database& db);
/**
* @brief Destructor
*/
~Statement();
/**
* @brief Binds the nth parameter with the passed value as string
*
* @param n
* @param value
*/
void bindString(const int n, const std::string& value);
/**
* @brief Binds the nth parameter with the passed value as integer
*
* @param n
* @param value
*/
void bindInt(const int n, const int value);
/**
* @brief Binds the nth parameter with the passed value as integer
*
* @param n
* @param value
*/
void bindDouble(const int n, const double value);
/**
* @brief Binds the nth parameter with the null value
*
* @param n
*/
void bindNull(const int n);
/**
* @brief gets a column as string
*
* @param column
*
* @return
*/
std::string getString(const std::string& column) const;
/**
* @brief gets a column as integer
*
* @param column
*
* @return
*/
int getInt(const std::string& column) const;
/**
* @brief gets a column as double
*
* @param column
*
* @return
*/
double getDouble(const std::string& column) const;
/**
* @brief gets the nth column as string and saves it in out
*
* @param n the index
* @param out the output string
*/
void getString(const int n, std::string& out) const;
/**
* @brief gets the nth column as integer and saves it in out
*
* @param n the index
* @param out the output integer
*/
void getInt(const int n, int& out) const;
/**
* @brief gets the nth column as string and saves it in out
*
* @param n the index
* @param out the output double
*/
void getDouble(const int n, double& out) const;
/**
* @brief gets the nth column as string
*
* @param n
*/
std::string getString(const int n) const ;
/**
* @brief gets the nth column as integer
*
* @param n
*/
int getInt(const int n) const;
/**
* @brief gets the nth column as double
*
* @param n
*/
double getDouble(const int n) const;
/**
* @brief prepares a string as statement
*
* @param sql SQL statement
*/
void prepare(const std::string& sql);
/**
* @brief fetches the next row
*
* @return
*/
bool fetchRow(void);
/**
* @brief executes the prepared statement
*/
void exec(void);
/**
* @brief releases any allocated resources. Use it, when you want to
* reuse a statement object.
*/
void finalize(void);
};
class SQLiteException : public std::exception {
private:
std::string error;
public:
/**
* @brief Constructs a SQLiteException with the passed error message
*/
SQLiteException(const std::string& str) {
this->error = str;
}
/**
* @brief The error message is the last sqlite error in the
* passed sqlite database.
*
* @param db
*/
SQLiteException(sqlite3* db) {
this->error = std::string(sqlite3_errmsg(db));
}
virtual ~SQLiteException() throw() {
}
/**
* @brief gets the error message
*/
virtual const char* what() const throw() {
return this->error.c_str();
}
};
extern SQLiteException DatabaseNotOpened;
extern SQLiteException DatabaseOpened;
extern SQLiteException StatementNotPrepared;
}
#endif