:sig MySQL* mysql_connect(String host = "localhost", String username = "root", String password = "") :params host : host name of the MySQL server username : user name password : password return value : pointer to the MySQL connection struct :see >mysql :content Establishes a connection to a MySQL server and returns a pointer to the connection struct. This connection handle is then used with helpers such as `mysql_query()`, `mysql_error()`, and `mysql_disconnect()`. Related: - PHP: modern database access through `mysqli_*` or PDO methods rather than the old `mysql_*` family - JavaScript / Node.js: clients such as `mysql2`, query builders, or ORM adapters