diff --git a/database/sqlitedao.cpp b/database/sqlitedao.cpp index 5e26c36..9ec8771 100644 --- a/database/sqlitedao.cpp +++ b/database/sqlitedao.cpp @@ -44,6 +44,10 @@ int SqliteDao::execInt(sqlite::database_binder &binder) const binder >> result; return result; } + catch(sqlite::exceptions::no_rows &e) + { + throw; + } catch(sqlite::sqlite_exception &e) { throwFrom(e);