|
Database System 0.1.0
Advanced C++20 Database System with Multi-Backend Support
|
Query execution response. More...
#include <database_protocol.h>

Public Attributes | |
| bool | success |
| std::vector< std::map< std::string, std::string > > | rows |
| std::vector< std::string > | column_names |
| uint64_t | affected_rows = 0 |
| uint64_t | last_insert_id = 0 |
| std::string | error_message |
| int32_t | error_code = 0 |
Query execution response.
Definition at line 131 of file database_protocol.h.
| uint64_t database::protocol::query_response::affected_rows = 0 |
Definition at line 139 of file database_protocol.h.
Referenced by database::protocol::protocol_serializer::deserialize_query_response(), database::protocol::protocol_serializer::serialize(), TEST_F(), and TEST_F().
| std::vector<std::string> database::protocol::query_response::column_names |
Definition at line 136 of file database_protocol.h.
Referenced by database::protocol::protocol_serializer::deserialize_query_response(), database::protocol::protocol_serializer::serialize(), TEST_F(), and TEST_F().
| int32_t database::protocol::query_response::error_code = 0 |
Definition at line 144 of file database_protocol.h.
Referenced by database::protocol::protocol_serializer::deserialize_query_response(), database::protocol::protocol_serializer::serialize(), TEST_F(), TEST_F(), and TEST_F().
| std::string database::protocol::query_response::error_message |
Definition at line 143 of file database_protocol.h.
Referenced by database::protocol::protocol_serializer::deserialize_query_response(), database::protocol::protocol_serializer::serialize(), and TEST_F().
| uint64_t database::protocol::query_response::last_insert_id = 0 |
Definition at line 140 of file database_protocol.h.
Referenced by database::protocol::protocol_serializer::deserialize_query_response(), database::protocol::protocol_serializer::serialize(), TEST_F(), and TEST_F().
| std::vector<std::map<std::string, std::string> > database::protocol::query_response::rows |
Definition at line 135 of file database_protocol.h.
Referenced by database::protocol::protocol_serializer::deserialize_query_response(), database::protocol::protocol_serializer::serialize(), TEST_F(), and TEST_F().
| bool database::protocol::query_response::success |
Definition at line 132 of file database_protocol.h.
Referenced by database::protocol::protocol_serializer::deserialize_query_response(), database::protocol::protocol_serializer::serialize(), TEST_F(), TEST_F(), TEST_F(), and TEST_F().