mysqli_affected_rows_oo.phpt 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. --TEST--
  2. mysqli->affected_rows
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifemb.inc');
  7. require_once('skipifconnectfailure.inc');
  8. ?>
  9. --FILE--
  10. <?php
  11. require_once("connect.inc");
  12. $mysqli = new mysqli();
  13. if (NULL !== ($tmp = @$mysqli->affected_rows))
  14. printf("[000a] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  15. if (!$mysqli = new my_mysqli($host, $user, $passwd, $db, $port, $socket)) {
  16. printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  17. $host, $user, $db, $port, $socket);
  18. }
  19. if (0 !== ($tmp = $mysqli->affected_rows))
  20. printf("[002] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
  21. if (!$mysqli->query('DROP TABLE IF EXISTS test'))
  22. printf("[003] [%d] %s\n", $mysqli->errno, $mysqli->error);
  23. if (!$mysqli->query('CREATE TABLE test(id INT, label CHAR(1), PRIMARY KEY(id)) ENGINE = ' . $engine))
  24. printf("[004] [%d] %s\n", $mysqli->errno, $mysqli->error);
  25. if (!$mysqli->query("INSERT INTO test(id, label) VALUES (1, 'a')"))
  26. printf("[005] [%d] %s\n", $mysqli->errno, $mysqli->error);
  27. if (1 !== ($tmp = $mysqli->affected_rows))
  28. printf("[006] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
  29. // ignore INSERT error, NOTE: command line returns 0, affected_rows returns -1 as documented
  30. $mysqli->query("INSERT INTO test(id, label) VALUES (1, 'a')");
  31. if (-1 !== ($tmp = $mysqli->affected_rows))
  32. printf("[007] Expecting int/-1, got %s/%s\n", gettype($tmp), $tmp);
  33. if (!$mysqli->query("INSERT INTO test(id, label) VALUES (1, 'a') ON DUPLICATE KEY UPDATE id = 4"))
  34. printf("[008] [%d] %s\n", $mysqli->errno, $mysqli->error);
  35. if (2 !== ($tmp = $mysqli->affected_rows))
  36. printf("[009] Expecting int/2, got %s/%s\n", gettype($tmp), $tmp);
  37. if (!$mysqli->query("INSERT INTO test(id, label) VALUES (2, 'b'), (3, 'c')"))
  38. printf("[010] [%d] %s\n", $mysqli->errno, $mysqli->error);
  39. if (2 !== ($tmp = $mysqli->affected_rows))
  40. printf("[011] Expecting int/2, got %s/%s\n", gettype($tmp), $tmp);
  41. if (!$mysqli->query("INSERT IGNORE INTO test(id, label) VALUES (1, 'a')")) {
  42. printf("[012] [%d] %s\n", $mysqli->errno, $mysqli->error);
  43. }
  44. if (1 !== ($tmp = $mysqli->affected_rows))
  45. printf("[013] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
  46. if (!$mysqli->query("INSERT INTO test(id, label) SELECT id + 10, label FROM test"))
  47. printf("[014] [%d] %s\n", $mysqli->errno, $mysqli->error);
  48. if (4 !== ($tmp = $mysqli->affected_rows))
  49. printf("[015] Expecting int/4, got %s/%s\n", gettype($tmp), $tmp);
  50. if (!$mysqli->query("REPLACE INTO test(id, label) values (4, 'd')"))
  51. printf("[015] [%d] %s\n", $mysqli->errno, $mysqli->error);
  52. if (2 !== ($tmp = $mysqli->affected_rows))
  53. printf("[016] Expecting int/2, got %s/%s\n", gettype($tmp), $tmp);
  54. if (!$mysqli->query("REPLACE INTO test(id, label) values (5, 'e')"))
  55. printf("[017] [%d] %s\n", $mysqli->errno, $mysqli->error);
  56. if (1 !== ($tmp = $mysqli->affected_rows))
  57. printf("[018] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
  58. if (!$mysqli->query("UPDATE test SET label = 'a' WHERE id = 2"))
  59. printf("[019] [%d] %s\n", $mysqli->errno, $mysqli->error);
  60. if (1 !== ($tmp = $mysqli->affected_rows))
  61. printf("[020] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
  62. if (!$mysqli->query("UPDATE test SET label = 'a' WHERE id = 2")) {
  63. printf("[021] [%d] %s\n", $mysqli->errno, $mysqli->error);
  64. }
  65. if (0 !== ($tmp = $mysqli->affected_rows))
  66. printf("[022] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
  67. if (!$mysqli->query("UPDATE test SET label = 'a' WHERE id = 100")) {
  68. printf("[023] [%d] %s\n", $mysqli->errno, $mysqli->error);
  69. }
  70. if (0 !== ($tmp = $mysqli->affected_rows))
  71. printf("[024] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
  72. if (!$mysqli->query('DROP TABLE IF EXISTS test'))
  73. printf("[025] [%d] %s\n", $mysqli->errno, $mysqli->error);
  74. $mysqli->close();
  75. if (NULL !== ($tmp = @$mysqli->affected_rows))
  76. printf("[026] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  77. print "done!";
  78. ?>
  79. --CLEAN--
  80. <?php
  81. require_once("clean_table.inc");
  82. ?>
  83. --EXPECTF--
  84. done!