Revision 258a530e
Added by David Sorber over 9 years ago
| software/sqlite_poc/DBManager.h | ||
|---|---|---|
|
void get_value(int64_t& val, int idx, sqlite3_stmt* stmt);
|
||
|
void get_value(double& val, int idx, sqlite3_stmt* stmt);
|
||
|
void get_value(std::string& val, int idx, sqlite3_stmt* stmt);
|
||
|
void get_value(bool& val, int idx, sqlite3_stmt* stmt);
|
||
|
|
||
|
template<size_t I>
|
||
|
struct builder_impl
|
||
Adding a boolean helper function to my proof-of-concept.