summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-selectcommand.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-12-29 02:42:43 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2015-12-29 06:00:07 +0000
commit3a7e2b9a7bde4682f2273022e9d2ddecd7e5e3b8 (patch)
treed5dc58209bd8fa28047c54a11c09bc64505d5354 /libsqlitepp/sqlite-selectcommand.cpp
parentRemove rebind (diff)
downloadlibdbpp-sqlite-3a7e2b9a7bde4682f2273022e9d2ddecd7e5e3b8.tar.bz2
libdbpp-sqlite-3a7e2b9a7bde4682f2273022e9d2ddecd7e5e3b8.tar.xz
libdbpp-sqlite-3a7e2b9a7bde4682f2273022e9d2ddecd7e5e3b8.zip
Reshuffle and add new exceptions
Diffstat (limited to 'libsqlitepp/sqlite-selectcommand.cpp')
-rw-r--r--libsqlitepp/sqlite-selectcommand.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsqlitepp/sqlite-selectcommand.cpp b/libsqlitepp/sqlite-selectcommand.cpp
index 9974647..ca72a9f 100644
--- a/libsqlitepp/sqlite-selectcommand.cpp
+++ b/libsqlitepp/sqlite-selectcommand.cpp
@@ -37,7 +37,7 @@ namespace SQLite {
h.null();
return;
case SQLITE_BLOB:
- throw std::runtime_error("Blobs not supported");
+ throw DB::ColumnTypeNotSupported();
}
}
@@ -73,7 +73,7 @@ SQLite::SelectCommand::fetch()
case SQLITE_DONE:
return false;
default:
- throw Error(sqlite3_errmsg(c->db));
+ throw Error(c->db);
}
}