mysqli_stmt_sqlstate.phpt 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. --TEST--
  2. mysqli_stmt_sqlstate()
  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_sqlstate()))
  15. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  16. if (!is_null($tmp = @mysqli_stmt_sqlstate($link)))
  17. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  18. require('table.inc');
  19. if (!is_null($tmp = @mysqli_stmt_sqlstate($link, '')))
  20. printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  21. if (!$stmt = mysqli_stmt_init($link))
  22. printf("[004] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  23. if (NULL !== ($tmp = mysqli_stmt_sqlstate($stmt)))
  24. printf("[005] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  25. if (!mysqli_stmt_prepare($stmt, "SELECT id FROM test"))
  26. printf("[006] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  27. if ('00000' !== ($tmp = mysqli_stmt_sqlstate($stmt)))
  28. printf("[007] Expecting string/00000, got %s/%s. [%d] %s\n",
  29. gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  30. if (mysqli_stmt_prepare($stmt, "SELECT believe_me FROM i_dont_belive_that_this_table_exists"))
  31. printf("[008] Should fail! [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  32. if ('' === ($tmp = mysqli_stmt_sqlstate($stmt)))
  33. printf("[009] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  34. mysqli_stmt_close($stmt);
  35. if (NULL !== ($tmp = mysqli_stmt_sqlstate($stmt)))
  36. printf("[010] Expecting NULL, got %s/%s\n");
  37. mysqli_close($link);
  38. print "done!";
  39. ?>
  40. --CLEAN--
  41. <?php
  42. require_once("clean_table.inc");
  43. ?>
  44. --EXPECTF--
  45. Warning: mysqli_stmt_sqlstate(): invalid object or resource mysqli_stmt
  46. in %s on line %d
  47. Warning: mysqli_stmt_sqlstate(): Couldn't fetch mysqli_stmt in %s on line %d
  48. done!