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
vanhempi 538d9e8b2d
commit 6aadd43ff4
1 muutettua tiedostoa jossa 4 lisäystä ja 0 poistoa

Näytä tiedosto

@ -44,6 +44,10 @@ int SqliteDao::execInt(sqlite::database_binder &binder) const
binder >> result; binder >> result;
return result; return result;
} }
catch(sqlite::exceptions::no_rows &e)
{
throw;
}
catch(sqlite::sqlite_exception &e) catch(sqlite::sqlite_exception &e)
{ {
throwFrom(e); throwFrom(e);