uce/src/lib/mysql-connector.h
2021-11-27 14:11:47 +01:00

13 lines
280 B
C

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);
};