MySQL database driver.
Functions
MySQL(char host[], int port, char user[], char pass[], char dbName[])
bool execute(char query[])
void close()
MySQL(char host[], int port, char user[], char pass[], char dbName[])
Create a new MySQL connection.
host The host ip address where the database is running.
port The port number.
user The user name to connect to the database.
pass The password to connect to the database.
dbName The database name. This can be left blank, in case the database name will be provided later on.
bool execute(char query[])
Executes a query to the database, returning true if the query is successfully executed, and false otherwise.