execInt: rethrow if no_rows, so callers can handle it

此提交包含在:
2018-11-05 10:48:30 +01:00
父節點 538d9e8b2d
當前提交 6aadd43ff4

查看文件

@ -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);