010.phpt 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. --TEST--
  2. mysqli fetch float values
  3. --INI--
  4. precision=12
  5. --SKIPIF--
  6. <?php
  7. require_once('skipif.inc');
  8. require_once('skipifconnectfailure.inc');
  9. ?>
  10. --FILE--
  11. <?php
  12. require_once("connect.inc");
  13. /*** test mysqli_connect 127.0.0.1 ***/
  14. $link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket);
  15. if (!mysqli_query($link, "SET sql_mode=''"))
  16. printf("[001] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  17. if (!mysqli_query($link, "DROP TABLE IF EXISTS test_bind_fetch"))
  18. printf("[002] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  19. $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 float(3),
  20. c2 float,
  21. c3 float unsigned,
  22. c4 float,
  23. c5 float,
  24. c6 float,
  25. c7 float(10) unsigned) ENGINE=" . $engine);
  26. if (!$rc)
  27. printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  28. mysqli_query($link, "INSERT INTO test_bind_fetch (c1,c2,c3,c4,c5,c6,c7) VALUES (3.1415926535,-0.000001, -5, 999999999999,
  29. sin(0.6), 1.00000000000001, 888888888888888)");
  30. $stmt = mysqli_prepare($link, "SELECT * FROM test_bind_fetch");
  31. mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
  32. mysqli_stmt_execute($stmt);
  33. mysqli_stmt_fetch($stmt);
  34. $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
  35. var_dump($test);
  36. mysqli_stmt_close($stmt);
  37. mysqli_query($link, "DROP TABLE IF EXISTS test_bind_fetch");
  38. mysqli_close($link);
  39. print "done!";
  40. ?>
  41. --CLEAN--
  42. <?php
  43. require_once("connect.inc");
  44. if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
  45. printf("[c001] [%d] %s\n", mysqli_connect_errno(), mysqli_connect_error());
  46. if (!mysqli_query($link, "DROP TABLE IF EXISTS test_bind_fetch"))
  47. printf("[c002] Cannot drop table, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  48. mysqli_close($link);
  49. ?>
  50. --EXPECT--
  51. array(7) {
  52. [0]=>
  53. float(3.14159)
  54. [1]=>
  55. float(-1.0E-6)
  56. [2]=>
  57. float(0)
  58. [3]=>
  59. float(1.0E+12)
  60. [4]=>
  61. float(0.564642)
  62. [5]=>
  63. float(1)
  64. [6]=>
  65. float(8.88889E+14)
  66. }
  67. done!