diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-05-02 18:41:53 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-05-02 18:41:53 +0100 |
commit | 44b536cd5195a5497c13b39de54f40d2c5ab8562 (patch) | |
tree | 1becdba95a0ea6e19588e26cf6a7c1c913ca35b8 /libsqlitepp/command.cpp | |
parent | Adds support for SQLite, SQLite mocking and some basic tests (diff) | |
download | libdbpp-sqlite-44b536cd5195a5497c13b39de54f40d2c5ab8562.tar.bz2 libdbpp-sqlite-44b536cd5195a5497c13b39de54f40d2c5ab8562.tar.xz libdbpp-sqlite-44b536cd5195a5497c13b39de54f40d2c5ab8562.zip |
Add support for RDBMS boolean/bit types
Diffstat (limited to 'libsqlitepp/command.cpp')
-rw-r--r-- | libsqlitepp/command.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libsqlitepp/command.cpp b/libsqlitepp/command.cpp index ce2758b..4e24426 100644 --- a/libsqlitepp/command.cpp +++ b/libsqlitepp/command.cpp @@ -81,6 +81,11 @@ SQLite::Command::bindParamS(unsigned int n, const Glib::ustring & s) } } void +SQLite::Command::bindParamB(unsigned int, bool) +{ + throw Error("Not supported"); +} +void SQLite::Command::bindParamT(unsigned int, const boost::posix_time::time_duration &) { throw Error("Not supported"); |