13 lines
280 B
C
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);
|
|
|
|
};
|