batch_stmt_transaction.phpt 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. --TEST--
  2. PDO_DBLIB: driver supports a batch of queries containing SELECT, INSERT, UPDATE statements
  3. --SKIPIF--
  4. <?php
  5. if (!extension_loaded('pdo_dblib')) die('skip not loaded');
  6. require dirname(__FILE__) . '/config.inc';
  7. if (!driver_supports_batch_statements_without_select($db)) die('xfail test will fail with this version of FreeTDS');
  8. ?>
  9. --FILE--
  10. <?php
  11. require dirname(__FILE__) . '/config.inc';
  12. $stmt = $db->query(
  13. "create table #php_pdo(id int);" .
  14. "insert into #php_pdo values(1), (2), (3);" .
  15. "select * from #php_pdo;" .
  16. "begin transaction;" .
  17. "update #php_pdo set id = 4;" .
  18. "rollback transaction;" .
  19. "select * from #php_pdo;" .
  20. "delete from #php_pdo;" .
  21. "drop table #php_pdo;"
  22. );
  23. // check results from the create table
  24. var_dump($stmt->rowCount());
  25. var_dump($stmt->nextRowset());
  26. // check results from the first insert
  27. var_dump($stmt->rowCount());
  28. var_dump($stmt->nextRowset());
  29. // check results from the select
  30. var_dump($stmt->rowCount());
  31. var_dump($stmt->nextRowset());
  32. // check results from begin transaction
  33. var_dump($stmt->rowCount());
  34. var_dump($stmt->nextRowset());
  35. // check results from the update
  36. var_dump($stmt->rowCount());
  37. var_dump($stmt->nextRowset());
  38. // check results from rollback
  39. var_dump($stmt->rowCount());
  40. var_dump($stmt->nextRowset());
  41. // check results from the select
  42. var_dump($stmt->fetchAll());
  43. var_dump($stmt->rowCount());
  44. var_dump($stmt->nextRowset());
  45. // check results from the delete
  46. var_dump($stmt->rowCount());
  47. var_dump($stmt->nextRowset());
  48. // check results from the drop
  49. var_dump($stmt->rowCount());
  50. var_dump($stmt->nextRowset());
  51. // check that there are no more results
  52. var_dump($stmt->rowCount());
  53. var_dump($stmt->nextRowset());
  54. ?>
  55. --EXPECT--
  56. int(-1)
  57. bool(true)
  58. int(3)
  59. bool(true)
  60. int(-1)
  61. bool(true)
  62. int(-1)
  63. bool(true)
  64. int(3)
  65. bool(true)
  66. int(-1)
  67. bool(true)
  68. array(3) {
  69. [0]=>
  70. array(2) {
  71. ["id"]=>
  72. int(1)
  73. [0]=>
  74. int(1)
  75. }
  76. [1]=>
  77. array(2) {
  78. ["id"]=>
  79. int(2)
  80. [0]=>
  81. int(2)
  82. }
  83. [2]=>
  84. array(2) {
  85. ["id"]=>
  86. int(3)
  87. [0]=>
  88. int(3)
  89. }
  90. }
  91. int(-1)
  92. bool(true)
  93. int(3)
  94. bool(true)
  95. int(-1)
  96. bool(false)
  97. int(-1)
  98. bool(false)