mysqli_stmt_fetch_bit.phpt 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. --TEST--
  2. Fetching BIT column values using the PS API
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifemb.inc');
  7. require_once('skipifconnectfailure.inc');
  8. require_once('connect.inc');
  9. require_once('table.inc');
  10. if (mysqli_get_server_version($link) < 50003)
  11. // b'001' syntax not supported before 5.0.3
  12. die("skip Syntax used for test not supported with MySQL Server before 5.0.3");
  13. if (!$IS_MYSQLND && (mysqli_get_client_version() < 50003))
  14. // better don't trust libmysql before 5.0.3
  15. die("skip Syntax used for test not supported with MySQL Server before 5.0.3");
  16. ?>
  17. --FILE--
  18. <?php
  19. require('connect.inc');
  20. if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
  21. printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  22. $host, $user, $db, $port, $socket);
  23. /* NOTE: works only for up to 31 bits! This limitation should be documented. */
  24. for ($bits = 1; $bits < 32; $bits++) {
  25. $max_value = pow(2, $bits) - 1;
  26. $tests = 0;
  27. if (!mysqli_query($link, "DROP TABLE IF EXISTS test") ||
  28. !mysqli_query($link, $sql = sprintf('CREATE TABLE test(id INT, label BIT(%d)) ENGINE="%s"', $bits, $engine)))
  29. printf("[002 - %d] [%d] %s\n",$bits, mysqli_errno($link), mysqli_error($link));
  30. if (!$stmt = mysqli_stmt_init($link))
  31. printf("[003 - %d] [%d] %s\n", $bits, mysqli_errno($link), mysqli_error($link));
  32. while ($tests < min($max_value, 20)) {
  33. $tests++;
  34. $value = mt_rand(0, $max_value);
  35. $sql = sprintf("INSERT INTO test(id, label) VALUES (%d, b'%s')", $value, decbin($value));
  36. if (!mysqli_stmt_prepare($stmt, $sql) ||
  37. !mysqli_stmt_execute($stmt))
  38. printf("[004 - %d] [%d] %s\n", $bits, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  39. $id = $_label0 = $label = null;
  40. $sql = sprintf("SELECT id, label + 0 AS _label0, label FROM test WHERE id = %d", $value);
  41. if (!mysqli_stmt_prepare($stmt, $sql) ||
  42. !mysqli_stmt_execute($stmt) ||
  43. !mysqli_stmt_bind_result($stmt, $id, $_label0, $label))
  44. printf("[005 - %d] [%d] %s\n", $bits, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  45. if (!mysqli_stmt_fetch($stmt))
  46. printf("[006 - %d] [%d] %s\n", $bits, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  47. if (($id !== $_label0) || ($value !== $_label0)) {
  48. printf("[007 - %d] Insert of %d in BIT(%d) column might have failed. MySQL reports odd values, id = %s, _label0 = %s, label = %s.\n", $bits, $value, $bits, $id, $_label0, $label);
  49. }
  50. if ($value != $label) {
  51. printf("[008 - %d] Wrong values, (original) value = %s, id = %s, label + 0 AS label0 = %s, label = %s\n",
  52. $bits, $value, $id, $_label0, $label);
  53. }
  54. }
  55. mysqli_stmt_close($stmt);
  56. }
  57. mysqli_close($link);
  58. print "done!";
  59. ?>
  60. --CLEAN--
  61. <?php
  62. require_once("clean_table.inc");
  63. ?>
  64. --EXPECTF--
  65. done!