mysqli_stmt_multires.phpt 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. --TEST--
  2. Multiple result set with PS
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once("connect.inc");
  7. if (!$IS_MYSQLND) {
  8. die("skip mysqlnd only test");
  9. }
  10. require_once('skipifconnectfailure.inc');
  11. ?>
  12. --FILE--
  13. <?php
  14. require_once("connect.inc");
  15. require('table.inc');
  16. $stmt = mysqli_stmt_init($link);
  17. if (!$link->query('DROP PROCEDURE IF EXISTS p123')) {
  18. printf("[001] [%d] %s\n", $link->error, $link->errno);
  19. }
  20. if (!$link->query("CREATE PROCEDURE p123() BEGIN SELECT id+12, CONCAT_WS('-',label,'ahoi') FROM test ORDER BY id LIMIT 1; SELECT id + 42, CONCAT_WS('---',label, label) FROM test ORDER BY id LIMIT 1; END")) {
  21. printf("[002] [%d] %s\n", $link->error, $link->errno);
  22. }
  23. if (!($stmt = $link->prepare("CALL p123"))) {
  24. printf("[003] [%d] %s\n", $stmt->error, $stmt->errno);
  25. }
  26. if (!$stmt->execute()) {
  27. printf("[005] [%d] %s\n", $stmt->error, $stmt->errno);
  28. }
  29. $c_id = NULL;
  30. $c_label = NULL;
  31. if (!$stmt->bind_result($c_id, $c_label)) {
  32. printf("[004] [%d] %s\n", $stmt->error, $stmt->errno);
  33. }
  34. var_dump("pre:",$c_id, $c_label);
  35. if (!$stmt->fetch()) {
  36. printf("[006] [%d] %s\n", $stmt->error, $stmt->errno);
  37. }
  38. var_dump("post:",$c_id, $c_label);
  39. if ($stmt->fetch()) {
  40. printf("[007] Shouldn't have fetched anything\n");
  41. var_dump($c_id, $c_label);
  42. }
  43. if ($stmt->fetch()) {
  44. printf("[008] No more rows expected\n");
  45. }
  46. if (!$stmt->more_results()) {
  47. printf("[009] Expected more results\n");
  48. } else {
  49. var_dump("[009] next_result:", $stmt->next_result());
  50. }
  51. if (!$stmt->bind_result($c_id, $c_label)) {
  52. printf("[010] [%d] %s\n", $stmt->error, $stmt->errno);
  53. }
  54. var_dump("pre:",$c_id, $c_label);
  55. if (!$stmt->fetch()) {
  56. printf("[011] [%d] %s\n", $stmt->error, $stmt->errno);
  57. }
  58. var_dump("post:",$c_id, $c_label);
  59. if ($stmt->fetch()) {
  60. printf("[012] No more rows expected\n");
  61. }
  62. if (!$stmt->more_results()) {
  63. printf("[013] Expected more results\n");
  64. } else {
  65. var_dump("[013] next_result:", $stmt->next_result());
  66. }
  67. if ($stmt->more_results()) {
  68. printf("[014] No more results expected\n");
  69. } else {
  70. printf("[014] No result, as expected\n");
  71. }
  72. $stmt->close();
  73. $link->close();
  74. echo "done";
  75. ?>
  76. --CLEAN--
  77. <?php
  78. require_once("connect.inc");
  79. if (!$link->query('DROP PROCEDURE IF EXISTS p123')) {
  80. printf("[001] [%d] %s\n", $link->error, $link->errno);
  81. }
  82. ?>
  83. --EXPECTF--
  84. string(4) "pre:"
  85. NULL
  86. NULL
  87. string(5) "post:"
  88. int(13)
  89. string(6) "a-ahoi"
  90. string(18) "[009] next_result:"
  91. bool(true)
  92. string(4) "pre:"
  93. int(13)
  94. string(6) "a-ahoi"
  95. string(5) "post:"
  96. int(43)
  97. string(5) "a---a"
  98. string(18) "[013] next_result:"
  99. bool(true)
  100. [014] No result, as expected
  101. done