diff options
Diffstat (limited to 'libsqlitepp/sqlite-selectcommand.cpp')
-rw-r--r-- | libsqlitepp/sqlite-selectcommand.cpp | 4 |
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); } } |