From e26c5431f00b1f24e694dd678bfa6cea8c0f0097 Mon Sep 17 00:00:00 2001 From: Georg Richter Date: Sun, 21 Apr 2002 13:03:37 +0000 Subject: [PATCH] Added a note (mysql_create_db is deprecated) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@79288 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/mysql/functions/mysql-create-db.xml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/reference/mysql/functions/mysql-create-db.xml b/reference/mysql/functions/mysql-create-db.xml index 0c32be9060..83a0fb5d8d 100644 --- a/reference/mysql/functions/mysql-create-db.xml +++ b/reference/mysql/functions/mysql-create-db.xml @@ -1,5 +1,5 @@ - + @@ -44,8 +44,16 @@ For downwards compatibility mysql_createdb can also be used. This is deprecated, however. + + + The function mysql_create_db is deprecated. It + is preferable to use mysql_query to issue a + SQL CREATE DATABASE Statement instead. + + - See also: mysql_drop_db. + See also: mysql_drop_db, + mysql_query.