execInt: rethrow if no_rows, so callers can handle it

This commit is contained in:
Albert S. 2018-11-05 10:48:30 +01:00
والد f349c7dc00
کامیت c07d0f66ef
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده

مشاهده پرونده

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