userver
C++ Async Framework
Documentation
API Groups
Namespaces
Reference
Class List
Class Index
File List
Macros
All
e
i
l
r
t
u
Functions
Macros
e
i
l
r
t
u
Examples
Toggle main menu visibility
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Concepts
Loading...
Searching...
No Matches
All results
execution_result.hpp
Go to the documentation of this file.
1
#
pragma
once
2
3
/// @file userver/storages/mysql/execution_result.hpp
4
5
#
include
<
cstdint
>
6
7
USERVER_NAMESPACE_BEGIN
8
9
namespace
storages::
mysql
{
10
11
/// @brief Metadata for an execution of a statement that doesn't expect a result
12
/// set (INSERT, UPDATE, DELETE).
13
struct
ExecutionResult
final
{
14
/// Amount of rows that statement affected. Consult MySQL docs for better
15
/// understanding.
16
std::
uint64_t
rows_affected
{};
17
18
/// LastInsertId, if any, or zero.
19
std::
uint64_t
last_insert_id
{};
20
};
13
struct
ExecutionResult
final
{
…
};
21
22
}
// namespace storages::mysql
23
24
USERVER_NAMESPACE_END
Docs version:
v1.0
,
v2.0
,
trunk/develop
userver
storages
mysql
execution_result.hpp
Generated on Wed Apr 30 2025 15:49:55 for userver by
Doxygen
1.13.2