diff --git a/database/sqlitedao.cpp b/database/sqlitedao.cpp index 8be75f2..24e0523 100644 --- a/database/sqlitedao.cpp +++ b/database/sqlitedao.cpp @@ -45,6 +45,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);