April 2008
Intermediate to advanced
566 pages
21h 55m
English
mysql_create_db()
int mysql_create_db(MYSQL *mysql, const char *database)
This function can be used to create a new database on the
MySQL server, with the new database name given as the second argument.
However, this function has been deprecated. Instead, a CREATE
DATABASE statement should be given with
mysql_query() or
mysql_real_query().
Read now
Unlock full access