diff --git a/reference/mysql/functions/mysql-create-db.xml b/reference/mysql/functions/mysql-create-db.xml index 10436a5298..dbc31c22ed 100644 --- a/reference/mysql/functions/mysql-create-db.xml +++ b/reference/mysql/functions/mysql-create-db.xml @@ -1,5 +1,5 @@ - + @@ -48,9 +48,15 @@ The function mysql_create_db is deprecated. It is preferable to use mysql_query to issue a - SQL CREATE DATABASE Statement instead. + SQL CREATE DATABASE Statement instead. + + + This function will not be available + if the MySQL extension was built against a MySQL 4.x client library. + + See also: mysql_drop_db, mysql_query. diff --git a/reference/mysql/functions/mysql-drop-db.xml b/reference/mysql/functions/mysql-drop-db.xml index c145ce6ca7..9b690c5091 100644 --- a/reference/mysql/functions/mysql-drop-db.xml +++ b/reference/mysql/functions/mysql-drop-db.xml @@ -1,5 +1,5 @@ - + @@ -30,10 +30,16 @@ The function mysql_drop_db is deprecated. It is - preferable to use mysql_query to issue a SQL - DROP DATABASE statement instead. + preferable to use mysql_query to issue a + SQL DROP DATABASE statement instead. + + + This function will not be available + if the MySQL extension was built against a MySQL 4.x client library + + See also mysql_create_db, and mysql_query.