introduced execute_result
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
#ifndef MATADOR_EXECUTE_RESULT_HPP
|
||||
#define MATADOR_EXECUTE_RESULT_HPP
|
||||
#include <vector>
|
||||
|
||||
namespace matador::sql {
|
||||
struct execute_result {
|
||||
size_t affected_rows{};
|
||||
std::vector<long long> insert_ids{};
|
||||
};
|
||||
}
|
||||
#endif // MATADOR_EXECUTE_RESULT_HPP
|
||||
Reference in New Issue
Block a user