/hphp/test/zend/bad/ext/mysql/tests/mysql_drop_db.php
http://github.com/facebook/hiphop-php · PHP · 44 lines · 33 code · 10 blank · 1 comment · 6 complexity · 21f11bc54cb08c27d9bab9bdfd74f537 MD5 · raw file
- <?php
- include_once "connect.inc";
- $tmp = NULL;
- $link = NULL;
- // NOTE: again this test does not test all of the behaviour of the function
- if (NULL !== ($tmp = mysql_drop_db()))
- printf("[001] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
- require('table.inc');
- if (!mysql_query('DROP DATABASE IF EXISTS mysqldropdb'))
- printf("[004] [%d] %s\n", mysql_errno($link), mysql_error($link));
- if (!mysql_query('CREATE DATABASE mysqldropdb'))
- die(sprintf("[005] Skipping, can't create test database. [%d] %s\n", mysql_errno($link), mysql_error($link)));
- if (true !== ($tmp = mysql_drop_db('mysqldropdb', $link)))
- printf("[006] Can't drop, got %s/%s. [%d] %s\n",
- gettype($tmp), $tmp,
- mysql_errno($link), mysql_error($link));
- if (false !== ($tmp = mysql_drop_db('mysqldropdb', $link)))
- printf("[007] Expecting boolean/false, got %s/%s. [%d] %s\n",
- gettype($tmp), $tmp,
- mysql_errno($link), mysql_error($link));
- mysql_close($link);
- print "done!\n";
- ?>
- <?php error_reporting(0); ?>
- <?php
- require_once('connect.inc');
- if (!$link = my_mysql_connect($host, $user, $passwd, $db, $port, $socket))
- printf("[c001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
- $host, $user, $db, $port, $socket);
- if (!mysql_query("DROP DATABASE IF EXISTS mysqldropdb", $link))
- printf("[c002] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
- mysql_close($link);
- ?>