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.
2 parents 0b27333 + 13f0713 commit 2917dbaCopy full SHA for 2917dba
devapi/result.cc
@@ -1387,13 +1387,17 @@ internal::BaseResult::getWarnings()
1387
1388
uint64_t Result::getAffectedItemsCount() const
1389
{
1390
- return get_impl().get_affected_rows();
+ try {
1391
+ return get_impl().get_affected_rows();
1392
+ } CATCH_AND_WRAP
1393
}
1394
1395
1396
uint64_t Result::getAutoIncrementValue() const
1397
- return get_impl().get_auto_increment();
1398
1399
+ return get_impl().get_auto_increment();
1400
1401
1402
1403
0 commit comments