finished statement cache class
This commit is contained in:
@@ -31,17 +31,17 @@ struct sql_command_info {
|
||||
struct query_context {
|
||||
std::string sql;
|
||||
sql_command command{};
|
||||
std::string command_name;
|
||||
std::string command_name{};
|
||||
sql::table table{""};
|
||||
std::vector<object::attribute_definition> prototype;
|
||||
std::vector<std::string> result_vars;
|
||||
std::vector<std::string> bind_vars;
|
||||
std::vector<utils::database_type> bind_types;
|
||||
std::vector<object::attribute_definition> prototype{};
|
||||
std::vector<std::string> result_vars{};
|
||||
std::vector<std::string> bind_vars{};
|
||||
std::vector<utils::database_type> bind_types{};
|
||||
|
||||
std::unordered_map<std::string, std::string> column_aliases;
|
||||
std::unordered_map<std::string, std::string> table_aliases;
|
||||
std::unordered_map<std::string, std::string> column_aliases{};
|
||||
std::unordered_map<std::string, std::string> table_aliases{};
|
||||
|
||||
std::vector<sql_command_info> additional_commands;
|
||||
std::vector<sql_command_info> additional_commands{};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user