mysql_info.phpt 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. --TEST--
  2. mysql_info()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifconnectfailure.inc');
  7. ?>
  8. --FILE--
  9. <?php
  10. include "connect.inc";
  11. if (false !== ($tmp = @mysql_info()))
  12. printf("[001] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  13. if (NULL !== ($tmp = @mysql_info(NULL)))
  14. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  15. require "table.inc";
  16. if (!$res = mysql_query("INSERT INTO test(id, label) VALUES (100, 'a')", $link))
  17. printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
  18. if (false !== ($tmp = mysql_info($link)))
  19. printf("[004] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  20. if (!$res = mysql_query("INSERT INTO test(id, label) VALUES (101, 'a'), (102, 'b')", $link))
  21. printf("[005] [%d] %s\n", mysql_errno($link), mysql_error($link));
  22. if (!is_string($tmp = mysql_info($link)) || ('' == $tmp))
  23. printf("[006] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp);
  24. if (!$res = mysql_query('INSERT INTO test(id, label) SELECT id + 200, label FROM test', $link))
  25. printf("[007] [%d] %s\n", mysql_errno($link), mysql_error($link));
  26. if (!is_string($tmp = mysql_info($link)) || ('' == $tmp))
  27. printf("[008] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp);
  28. if (!$res = mysql_query('ALTER TABLE test MODIFY label CHAR(2)', $link))
  29. printf("[009] [%d] %s\n", mysql_errno($link), mysql_error($link));
  30. if (!is_string($tmp = mysql_info($link)) || ('' == $tmp))
  31. printf("[010] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp);
  32. if (!$res = mysql_query("UPDATE test SET label = 'b' WHERE id >= 100", $link))
  33. printf("[011] [%d] %s\n", mysql_errno($link), mysql_error($link));
  34. if (!is_string($tmp = mysql_info($link)) || ('' == $tmp))
  35. printf("[012] Expecting string/any_non_empty, got %s/%s\n", gettype($tmp), $tmp);
  36. if ((version_compare(PHP_VERSION, '5.9.9', '>') == 1) && !is_unicode($tmp)) {
  37. printf("[013] Expecting Unicode!\n");
  38. var_inspect($info);
  39. }
  40. if (!is_string($def_tmp = mysql_info()) || ('' == $def_tmp))
  41. printf("[014] Expecting string/any_non_empty, got %s/%s\n", gettype($def_tmp), $def_tmp);
  42. if ($def_tmp !== $tmp) {
  43. printf("[015] Results differ for default link and specified link, [%d] %s\n",
  44. mysql_errno(), mysql_error());
  45. var_inspect($tmp);
  46. var_inspect($def_tmp);
  47. }
  48. // NOTE: no LOAD DATA INFILE test
  49. print "done!";
  50. ?>
  51. --CLEAN--
  52. <?php
  53. require_once("clean_table.inc");
  54. ?>
  55. --EXPECTF--
  56. 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
  57. done!