mysqli_stmt_insert_id.phpt 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. --TEST--
  2. mysqli_stmt_insert_id()
  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. $tmp = NULL;
  13. $link = NULL;
  14. if (!is_null($tmp = @mysqli_stmt_insert_id()))
  15. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  16. $stmt = @new mysqli_stmt($link);
  17. if (!is_null($tmp = @mysqli_insert_id($link)))
  18. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  19. require('table.inc');
  20. $stmt = mysqli_stmt_init($link);
  21. if (NULL !== ($tmp = @mysqli_stmt_insert_id($stmt)))
  22. printf("[003] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
  23. if (!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test ORDER BY id LIMIT 1") ||
  24. !mysqli_stmt_execute($stmt)) {
  25. printf("[004] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  26. }
  27. if (0 !== ($tmp = mysqli_stmt_insert_id($stmt)))
  28. printf("[005] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
  29. mysqli_stmt_close($stmt);
  30. // no auto_increment column
  31. $stmt = mysqli_stmt_init($link);
  32. if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(id, label) VALUES (100, 'a')") ||
  33. !mysqli_stmt_execute($stmt)) {
  34. printf("[006] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  35. }
  36. if (0 !== ($tmp = mysqli_stmt_insert_id($stmt)))
  37. printf("[007] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
  38. if (mysqli_get_server_version($link) > 50000 &&
  39. (!mysqli_stmt_prepare($stmt, "ALTER TABLE test MODIFY id INT NOT NULL AUTO_INCREMENT") ||
  40. !mysqli_stmt_execute($stmt))) {
  41. printf("[008] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  42. } else if (mysqli_get_server_version($link) < 50000){
  43. mysqli_query($link, "ALTER TABLE test MODIFY id INT NOT NULL AUTO_INCREMENT");
  44. }
  45. if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(label) VALUES ('a')") ||
  46. !mysqli_stmt_execute($stmt)) {
  47. printf("[009] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  48. }
  49. if (0 === ($tmp = mysqli_stmt_insert_id($stmt)))
  50. printf("[010] Expecting int/any non zero, got %s/%s\n", gettype($tmp), $tmp);
  51. mysqli_stmt_close($stmt);
  52. mysqli_close($link);
  53. var_dump(mysqli_stmt_insert_id($stmt));
  54. print "done!";
  55. ?>
  56. --CLEAN--
  57. <?php
  58. require_once("clean_table.inc");
  59. ?>
  60. --EXPECTF--
  61. Warning: mysqli_stmt_insert_id(): Couldn't fetch mysqli_stmt in %s on line %d
  62. NULL
  63. done!