![]()  | 
  
    MySQL 8.4.7
    
   Source Code Documentation 
   | 
 
Go to the source code of this file.
Classes | |
| class | Mysql_connection | 
| Mysql client connection wrapper class to connect MySQL, execute SQL query and fetch query results.  More... | |
Typedefs | |
| using | MYSQL_RES_VAL = std::vector< std::vector< std::string > > | 
| result of executed query in rows<cols<value>> format where rows and cols both are std::vector and value is std::string.  More... | |
| using | MYSQL_RES_TUPLE = std::tuple< uint, std::vector< std::vector< std::string > > > | 
| std::tuple<error number, result> where first element of tuple is function return value and determines: 0 Successful !0 Error  More... | |
| using MYSQL_RES_TUPLE = std::tuple<uint, std::vector<std::vector<std::string> >> | 
std::tuple<error number, result> where first element of tuple is function return value and determines: 0 Successful !0 Error
second element of tuple is result of executed query in rows<cols<value>> format where rows and cols both are std::vector and value is std::string.
| using MYSQL_RES_VAL = std::vector<std::vector<std::string> > | 
result of executed query in rows<cols<value>> format where rows and cols both are std::vector and value is std::string.