diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-24 04:13:24 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-24 04:13:24 +0000 |
commit | 5dd91c7b80443c1f0e747088159c4d8b78d1856d (patch) | |
tree | 226331b6026e722f6a69765963ff19a9436155c1 /libsqlitepp/command.cpp | |
parent | Use parent glibmm (diff) | |
download | libdbpp-sqlite-5dd91c7b80443c1f0e747088159c4d8b78d1856d.tar.bz2 libdbpp-sqlite-5dd91c7b80443c1f0e747088159c4d8b78d1856d.tar.xz libdbpp-sqlite-5dd91c7b80443c1f0e747088159c4d8b78d1856d.zip |
SQLite files prefixed with sqlite-
Diffstat (limited to 'libsqlitepp/command.cpp')
-rw-r--r-- | libsqlitepp/command.cpp | 105 |
1 files changed, 0 insertions, 105 deletions
diff --git a/libsqlitepp/command.cpp b/libsqlitepp/command.cpp deleted file mode 100644 index 4e24426..0000000 --- a/libsqlitepp/command.cpp +++ /dev/null @@ -1,105 +0,0 @@ -#include "command.h" -#include "connection.h" -#include <stdlib.h> -#include <string.h> - -SQLite::Command::Command(const Connection * conn, const std::string & sql) : - DB::Command(sql), - c(conn) -{ - if (sqlite3_prepare_v2(conn->db, sql.c_str(), sql.length(), &stmt, NULL) != SQLITE_OK) { - throw Error(sqlite3_errmsg(conn->db)); - } -} - -SQLite::Command::~Command() -{ - sqlite3_finalize(stmt); -} - -void -SQLite::Command::bindParamI(unsigned int n, int v) -{ - if (sqlite3_bind_int(stmt, n + 1, v) != SQLITE_OK) { - throw Error(sqlite3_errmsg(c->db)); - } -} -void -SQLite::Command::bindParamI(unsigned int n, long int v) -{ - if (sqlite3_bind_int64(stmt, n + 1, v) != SQLITE_OK) { - throw Error(sqlite3_errmsg(c->db)); - } -} -void -SQLite::Command::bindParamI(unsigned int n, long long int v) -{ - if (sqlite3_bind_int64(stmt, n + 1, v) != SQLITE_OK) { - throw Error(sqlite3_errmsg(c->db)); - } -} -void -SQLite::Command::bindParamI(unsigned int n, unsigned int v) -{ - if (sqlite3_bind_int64(stmt, n + 1, v) != SQLITE_OK) { - throw Error(sqlite3_errmsg(c->db)); - } -} -void -SQLite::Command::bindParamI(unsigned int n, long unsigned int v) -{ - if (sqlite3_bind_int64(stmt, n + 1, v) != SQLITE_OK) { - throw Error(sqlite3_errmsg(c->db)); - } -} -void -SQLite::Command::bindParamI(unsigned int n, long long unsigned int v) -{ - if (sqlite3_bind_int64(stmt, n + 1, v) != SQLITE_OK) { - throw Error(sqlite3_errmsg(c->db)); - } -} -void -SQLite::Command::bindParamF(unsigned int n, double v) -{ - if (sqlite3_bind_double(stmt, n + 1, v) != SQLITE_OK) { - throw Error(sqlite3_errmsg(c->db)); - } -} -void -SQLite::Command::bindParamF(unsigned int n, float v) -{ - if (sqlite3_bind_double(stmt, n + 1, v) != SQLITE_OK) { - throw Error(sqlite3_errmsg(c->db)); - } -} -void -SQLite::Command::bindParamS(unsigned int n, const Glib::ustring & s) -{ - if (sqlite3_bind_text(stmt, n + 1, s.c_str(), s.length(), SQLITE_STATIC) != SQLITE_OK) { - throw Error(sqlite3_errmsg(c->db)); - } -} -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"); -} -void -SQLite::Command::bindParamT(unsigned int, const boost::posix_time::ptime &) -{ - throw Error("Not supported"); -} -void -SQLite::Command::bindNull(unsigned int n) -{ - if (sqlite3_bind_null(stmt, n + 1) != SQLITE_OK) { - throw Error(sqlite3_errmsg(c->db)); - } -} - |