You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have looked all over for an example to simply do a basic select COUNT(*) query.
After wasting a good hour without any success, I'm throwing in the towel.
QUERY(getAllUsersCount,
"SELECT COUNT(*) FROM \"AppUser\";")
Over in the service....
auto dbCountResult = m_database_postgres->getAllUsersCount();
OATPP_ASSERT_HTTP(dbCountResult->isSuccess(), Status::CODE_500, dbCountResult->getErrorMessage());
Fails with error I can't have anything that's not a container.
auto total_count = dbCountResult->fetch<oatpp::data::mapping::type::UInt32>();
auto total_count_list = dbCountResult->fetch<oatpp::Vector<oatpp::Fields<oatpp::Any>>>();
auto total_count_list = dbCountResult->fetch<oatpp::Vector<oatpp::Fields< oatpp::UInt32>>>();
Fails when I try to iterate the result, no methods begin/end and for each not working. Plus I expect one answer not many.
Why is this so hard?
The text was updated successfully, but these errors were encountered:
I have looked all over for an example to simply do a basic select COUNT(*) query.
After wasting a good hour without any success, I'm throwing in the towel.
Over in the service....
Fails with error I can't have anything that's not a container.
Fails when I try to iterate the result, no methods begin/end and for each not working. Plus I expect one answer not many.
Why is this so hard?
The text was updated successfully, but these errors were encountered: