We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0da553 commit 13f0713Copy full SHA for 13f0713
devapi/result.cc
@@ -1342,13 +1342,17 @@ internal::BaseResult::getWarnings()
1342
1343
uint64_t Result::getAffectedItemsCount() const
1344
{
1345
- return get_impl().get_affected_rows();
+ try {
1346
+ return get_impl().get_affected_rows();
1347
+ } CATCH_AND_WRAP
1348
}
1349
1350
1351
uint64_t Result::getAutoIncrementValue() const
1352
- return get_impl().get_auto_increment();
1353
1354
+ return get_impl().get_auto_increment();
1355
1356
1357
1358
0 commit comments