mysql_query.phpt 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. --TEST--
  2. mysql_query()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifconnectfailure.inc');
  7. ?>
  8. --FILE--
  9. <?php
  10. include_once("connect.inc");
  11. $tmp = NULL;
  12. $link = NULL;
  13. if (!is_null($tmp = @mysql_query()))
  14. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  15. if (false !== ($tmp = @mysql_query($link)))
  16. printf("[002] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  17. require('table.inc');
  18. if (NULL !== ($tmp = @mysql_query("SELECT 1 AS a", $link, "foo")))
  19. printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  20. if (false !== ($tmp = mysql_query('THIS IS NOT SQL', $link)))
  21. printf("[004] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  22. if (false !== ($tmp = mysql_query("SELECT 'this is sql but with backslash g'\g", $link)))
  23. printf("[005] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  24. if ((0 === mysql_errno($link)) || ('' == mysql_error($link)))
  25. printf("[006] mysql_errno()/mysql_error should return some error\n");
  26. if (!$res = mysql_query("SELECT 'this is sql but with semicolon' AS valid ; ", $link))
  27. printf("[007] [%d] %s\n", mysql_errno($link), mysql_error($link));
  28. var_dump(mysql_fetch_assoc($res));
  29. mysql_free_result($res);
  30. if (!$res = mysql_query("SELECT 'a' AS ''", $link))
  31. printf("[007a] [%d] %s\n", mysql_errno($link), mysql_error($link));
  32. var_dump($tmp = mysql_fetch_assoc($res));
  33. var_dump($tmp[""]);
  34. mysql_free_result($res);
  35. if (false !== ($res = mysql_query("SELECT 'this is sql but with semicolon' AS valid ; SHOW VARIABLES", $link)))
  36. printf("[008] [%d] %s\n", mysql_errno($link), mysql_error($link));
  37. if (mysql_query('DROP PROCEDURE IF EXISTS p', $link)) {
  38. // let's try to play with stored procedures
  39. if (mysql_query('CREATE PROCEDURE p(OUT ver_param VARCHAR(25)) BEGIN SELECT VERSION() INTO ver_param; END;', $link)) {
  40. $res = mysql_query('CALL p(@version)', $link);
  41. $res = mysql_query('SELECT @version AS p_version', $link);
  42. $tmp = mysql_fetch_assoc($res);
  43. if (!isset($tmp['p_version']) || ('' == $tmp['p_version'])) {
  44. printf("[009] Result seems wrong, dumping\n");
  45. var_dump($tmp);
  46. }
  47. if ((version_compare(PHP_VERSION, '5.9.9', '>') == 1) && !is_unicode($tmp['p_version'])) {
  48. printf("[010] Expecting unicode string, dumping\n");
  49. var_dump($tmp);
  50. }
  51. mysql_free_result($res);
  52. } else {
  53. printf("[011] [%d] %s\n", mysql_errno($link), mysql_error($link));
  54. }
  55. mysql_query('DROP FUNCTION IF EXISTS f', $link);
  56. if (mysql_query('CREATE FUNCTION f( ver_param VARCHAR(25)) RETURNS VARCHAR(25) DETERMINISTIC RETURN ver_param;', $link)) {
  57. $res = mysql_query('SELECT f(VERSION()) AS f_version', $link);
  58. $tmp = mysql_fetch_assoc($res);
  59. if (!isset($tmp['f_version']) || ('' == $tmp['f_version'])) {
  60. printf("[012] Result seems wrong, dumping\n");
  61. var_dump($tmp);
  62. }
  63. if ((version_compare(PHP_VERSION, '5.9.9', '>') == 1) && !is_unicode($tmp['f_version'])) {
  64. printf("[013] Expecting unicode string, dumping\n");
  65. var_dump($tmp);
  66. }
  67. mysql_free_result($res);
  68. } else {
  69. printf("[014] [%d] %s\n", mysql_errno($link), mysql_error($link));
  70. }
  71. }
  72. mysql_close($link);
  73. if (false !== ($tmp = mysql_query("SELECT id FROM test", $link)))
  74. printf("[011] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  75. print "done!";
  76. ?>
  77. --CLEAN--
  78. <?php
  79. require_once('connect.inc');
  80. // connect + select_db
  81. if (!$link = my_mysql_connect($host, $user, $passwd, $db, $port, $socket)) {
  82. printf("[clean] Cannot connect to the server using host=%s/%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  83. $host, $myhost, $user, $db, $port, $socket);
  84. }
  85. if (!mysql_query('DROP TABLE IF EXISTS test', $link)) {
  86. printf("[clean] Failed to drop test table: [%d] %s\n", mysql_errno($link), mysql_error($link));
  87. }
  88. /* MySQL server may not support this - ignore errors */
  89. @mysql_query('DROP PROCEDURE IF EXISTS p', $link);
  90. @mysql_query('DROP FUNCTION IF EXISTS f', $link);
  91. mysql_close($link);
  92. ?>
  93. --EXPECTF--
  94. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  95. array(1) {
  96. [%u|b%"valid"]=>
  97. %unicode|string%(30) "this is sql but with semicolon"
  98. }
  99. array(1) {
  100. [%u|b%""]=>
  101. %unicode|string%(1) "a"
  102. }
  103. %unicode|string%(1) "a"
  104. Warning: mysql_query(): %d is not a valid MySQL-Link resource in %s on line %d
  105. done!