PageRenderTime 52ms CodeModel.GetById 28ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/zend/bad/ext/mysqli/tests/mysqli_stmt_execute.php

http://github.com/facebook/hiphop-php
PHP | 116 lines | 81 code | 31 blank | 4 comment | 27 complexity | 6be3d4c326e26f20196ad75d8c930b94 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. require_once("connect.inc");
  3. $tmp = NULL;
  4. $link = NULL;
  5. $test_table_name = 'test_mysqli_stmt_execute_table_1'; require('table.inc');
  6. if (!$stmt = mysqli_stmt_init($link))
  7. printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  8. // stmt object status test
  9. if (NULL !== ($tmp = mysqli_stmt_execute($stmt)))
  10. printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  11. if (mysqli_stmt_prepare($stmt, "SELECT i_do_not_exist_believe_me FROM test_mysqli_stmt_execute_table_1 ORDER BY id"))
  12. printf("[005] Statement should have failed!\n");
  13. // stmt object status test
  14. if (NULL !== ($tmp = mysqli_stmt_execute($stmt)))
  15. printf("[006] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  16. if (!mysqli_stmt_prepare($stmt, "SELECT id FROM test_mysqli_stmt_execute_table_1 ORDER BY id LIMIT 1"))
  17. printf("[007] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  18. if (true !== ($tmp = mysqli_stmt_execute($stmt)))
  19. printf("[008] Expecting boolean/true, got %s/%s. [%d] %s\n",
  20. gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  21. if (!mysqli_stmt_prepare($stmt, "INSERT INTO test_mysqli_stmt_execute_table_1(id, label) VALUES (?, ?)"))
  22. printf("[009] [%d] %s\n", mysqli_stmt_execute($stmt), mysqli_stmt_execute($stmt));
  23. // no input variables bound
  24. if (false !== ($tmp = mysqli_stmt_execute($stmt)))
  25. printf("[010] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  26. $id = 100;
  27. $label = "z";
  28. if (!mysqli_stmt_bind_param($stmt, "is", $id, $label))
  29. printf("[011] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  30. if (true !== ($tmp = mysqli_stmt_execute($stmt)))
  31. printf("[012] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  32. // calling reset between executions
  33. mysqli_stmt_close($stmt);
  34. if (!$stmt = mysqli_stmt_init($link))
  35. printf("[013] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  36. if (!mysqli_stmt_prepare($stmt, "SELECT id FROM test_mysqli_stmt_execute_table_1 ORDER BY id LIMIT ?"))
  37. printf("[014] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  38. $limit = 1;
  39. if (!mysqli_stmt_bind_param($stmt, "i", $limit))
  40. printf("[015] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  41. if (true !== ($tmp = mysqli_stmt_execute($stmt)))
  42. printf("[016] Expecting boolean/true, got %s/%s. [%d] %s\n",
  43. gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  44. $id = null;
  45. if (!mysqli_stmt_bind_result($stmt, $id) || !mysqli_stmt_fetch($stmt))
  46. printf("[017] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  47. if ($id !== 1)
  48. printf("[018] Expecting int/1 got %s/%s\n", gettype($id), $id);
  49. if (true !== ($tmp = mysqli_stmt_reset($stmt)))
  50. printf("[019] Expecting boolean/true, got %s/%s. [%d] %s\n",
  51. gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  52. if (true !== ($tmp = mysqli_stmt_execute($stmt)))
  53. printf("[020] Expecting boolean/true after reset to prepare status, got %s/%s. [%d] %s\n",
  54. gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  55. $id = null;
  56. if (!mysqli_stmt_fetch($stmt))
  57. printf("[021] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  58. if ($id !== 1)
  59. printf("[022] Expecting int/1 got %s/%s\n", gettype($id), $id);
  60. mysqli_stmt_close($stmt);
  61. if (!$stmt = mysqli_stmt_init($link))
  62. printf("[023] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  63. if (!mysqli_stmt_prepare($stmt, "SELECT id FROM test_mysqli_stmt_execute_table_1 ORDER BY id LIMIT 1"))
  64. printf("[024] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  65. if (true !== ($tmp = mysqli_stmt_execute($stmt)))
  66. printf("[025] Expecting boolean/true, got %s/%s. [%d] %s\n",
  67. gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  68. if (true !== ($tmp = mysqli_stmt_reset($stmt)))
  69. printf("[026] Expecting boolean/true, got %s/%s. [%d] %s\n",
  70. gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  71. var_dump(mysqli_stmt_execute($stmt));
  72. var_dump(mysqli_stmt_fetch($stmt));
  73. mysqli_kill($link, mysqli_thread_id($link));
  74. if (false !== ($tmp = mysqli_stmt_execute($stmt)))
  75. printf("[027] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  76. mysqli_stmt_close($stmt);
  77. if (NULL !== ($tmp = mysqli_stmt_execute($stmt)))
  78. printf("[028] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  79. mysqli_close($link);
  80. print "done!";
  81. ?>
  82. <?php error_reporting(0); ?>
  83. <?php
  84. $test_table_name = 'test_mysqli_stmt_execute_table_1'; require_once("clean_table.inc");
  85. ?>