execInt: rethrow if no_rows, so callers can handle it
Este commit está contenido en:
padre
f349c7dc00
commit
c07d0f66ef
@ -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);
|
||||
|
Cargando…
Referencia en una nueva incidencia
Block a user