commit_old.phpt 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. --TEST--
  2. ocicommit()/ocirollback()
  3. --SKIPIF--
  4. <?php
  5. $target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
  6. require(dirname(__FILE__).'/skipif.inc');
  7. ?>
  8. --FILE--
  9. <?php
  10. require dirname(__FILE__)."/connect.inc";
  11. require dirname(__FILE__).'/create_table.inc';
  12. $insert_sql = "INSERT INTO ".$schema.$table_name." (id, value) VALUES (1,1)";
  13. if (!($s = ociparse($c, $insert_sql))) {
  14. die("ociparse(insert) failed!\n");
  15. }
  16. for ($i = 0; $i<3; $i++) {
  17. if (!ociexecute($s, OCI_DEFAULT)) {
  18. die("ociexecute(insert) failed!\n");
  19. }
  20. }
  21. var_dump(ocirollback($c));
  22. $select_sql = "SELECT * FROM ".$schema.$table_name."";
  23. if (!($select = ociparse($c, $select_sql))) {
  24. die("ociparse(select) failed!\n");
  25. }
  26. if (!oci_execute($select)) {
  27. die("ociexecute(select) failed!\n");
  28. }
  29. var_dump(ocifetchstatement($select, $all));
  30. var_dump($all);
  31. /* ocifetchstatement */
  32. if (!ociexecute($s)) {
  33. die("ociexecute(select) failed!\n");
  34. }
  35. $insert_sql = "INSERT INTO ".$schema.$table_name." (id, value) VALUES (1,1)";
  36. if (!($s = ociparse($c, $insert_sql))) {
  37. die("ociparse(insert) failed!\n");
  38. }
  39. for ($i = 0; $i<3; $i++) {
  40. if (!ociexecute($s, OCI_DEFAULT)) {
  41. die("ociexecute(insert) failed!\n");
  42. }
  43. }
  44. var_dump(ocicommit($c));
  45. if (!ociexecute($select)) {
  46. die("ociexecute(select) failed!\n");
  47. }
  48. var_dump(ocifetchstatement($select, $all));
  49. var_dump($all);
  50. require dirname(__FILE__).'/drop_table.inc';
  51. echo "Done\n";
  52. ?>
  53. --EXPECT--
  54. bool(true)
  55. int(0)
  56. array(5) {
  57. ["ID"]=>
  58. array(0) {
  59. }
  60. ["VALUE"]=>
  61. array(0) {
  62. }
  63. ["BLOB"]=>
  64. array(0) {
  65. }
  66. ["CLOB"]=>
  67. array(0) {
  68. }
  69. ["STRING"]=>
  70. array(0) {
  71. }
  72. }
  73. bool(true)
  74. int(4)
  75. array(5) {
  76. ["ID"]=>
  77. array(4) {
  78. [0]=>
  79. string(1) "1"
  80. [1]=>
  81. string(1) "1"
  82. [2]=>
  83. string(1) "1"
  84. [3]=>
  85. string(1) "1"
  86. }
  87. ["VALUE"]=>
  88. array(4) {
  89. [0]=>
  90. string(1) "1"
  91. [1]=>
  92. string(1) "1"
  93. [2]=>
  94. string(1) "1"
  95. [3]=>
  96. string(1) "1"
  97. }
  98. ["BLOB"]=>
  99. array(4) {
  100. [0]=>
  101. NULL
  102. [1]=>
  103. NULL
  104. [2]=>
  105. NULL
  106. [3]=>
  107. NULL
  108. }
  109. ["CLOB"]=>
  110. array(4) {
  111. [0]=>
  112. NULL
  113. [1]=>
  114. NULL
  115. [2]=>
  116. NULL
  117. [3]=>
  118. NULL
  119. }
  120. ["STRING"]=>
  121. array(4) {
  122. [0]=>
  123. NULL
  124. [1]=>
  125. NULL
  126. [2]=>
  127. NULL
  128. [3]=>
  129. NULL
  130. }
  131. }
  132. Done