PageRenderTime 50ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/zend/bad/ext/mysql/tests/mysql_create_db.php

http://github.com/facebook/hiphop-php
PHP | 45 lines | 33 code | 12 blank | 0 comment | 10 complexity | 655a794641ce9967310606316bd3b7f3 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?php
  2. include "connect.inc";
  3. $link = NULL;
  4. $tmp = null;
  5. if (false !== ($tmp = mysql_create_db()))
  6. printf("[001] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  7. if (false !== ($tmp = mysql_create_db($link, $link, $link)))
  8. printf("[002] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  9. if ($link = my_mysql_connect($host, $user, $passwd, $db, $port, $socket))
  10. printf("[003] Can connect to the server using host=%s, user=%s, passwd=***non_empty, dbname=%s, port=%s, socket=%s\n",
  11. $host, $user . 'unknown_really', $db, $port, $socket);
  12. if (!mysql_query("CREATE DATABASE mysqlcreatedb", $link))
  13. die(sprintf("[004] Cannot create database, aborting test, [%d] %s\n", mysql_errno($link), mysql_error($link)));
  14. if (!mysql_query("DROP DATABASE mysqlcreatedb", $link))
  15. printf("[005] [%d] %s\n", mysql_errno($link), mysql_error($link));
  16. if (true !== ($tmp = mysql_create_db("mysqlcreatedb", $link)))
  17. printf("[006] Expecting boolean/true, got %s/%s, [%d] %s\n", gettype($tmp), $tmp, mysql_errno($link), mysql_error($link));
  18. if (false !== ($tmp = mysql_create_db("mysqlcreatedb", $link)))
  19. printf("[007] Expecting boolean/false, got %s/%s, [%d] %s\n", gettype($tmp), $tmp, mysql_errno($link), mysql_error($link));
  20. if (!mysql_query("DROP DATABASE mysqlcreatedb", $link))
  21. printf("[008] [%d] %s\n", mysql_errno($link), mysql_error($link));
  22. print "done!";
  23. ?>
  24. <?php error_reporting(0); ?>
  25. <?php
  26. require_once('connect.inc');
  27. if (!$link = my_mysql_connect($host, $user, $passwd, $db, $port, $socket))
  28. printf("[c001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  29. $host, $user, $db, $port, $socket);
  30. if (!mysql_query("DROP DATABASE IF EXISTS mysqlcreatedb", $link))
  31. printf("[c002] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  32. mysql_close($link);
  33. ?>