struct MySQL { void* connection; bool connect(string host = "localhost", string username = "root", string password = ""); void disconnect(); string error(); string escape(string raw, char quote_char = '\''); string parse_query_parameters(string query, StringMap m); };