commit_002.phpt 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. --TEST--
  2. Test oci_commit failure
  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. // Initialization
  12. $stmtarray = array(
  13. "drop table commit_002_tab",
  14. "create table commit_002_tab
  15. ( x int constraint commit_002_tab_check_x check ( x > 0 ) deferrable initially immediate,
  16. y int constraint commit_002_tab_check_y check ( y > 0 ) deferrable initially deferred)"
  17. );
  18. oci8_test_sql_execute($c, $stmtarray);
  19. // Run Test
  20. echo "First Insert\n";
  21. $s = oci_parse($c, "insert into commit_002_tab values (-1, 1)");
  22. $r = @oci_execute($s, OCI_DEFAULT);
  23. if (!$r) {
  24. $m = oci_error($s);
  25. echo 'Could not execute: '. $m['message'] . "\n";
  26. }
  27. $r = oci_commit($c);
  28. if (!$r) {
  29. $m = oci_error($c);
  30. echo 'Could not commit: '. $m['message'] . "\n";
  31. }
  32. echo "Second Insert\n";
  33. $s = oci_parse($c, "insert into commit_002_tab values (1, -1)");
  34. $r = @oci_execute($s, OCI_NO_AUTO_COMMIT);
  35. if (!$r) {
  36. $m = oci_error($s);
  37. echo 'Could not execute: '. $m['message'] . "\n";
  38. }
  39. $r = oci_commit($c);
  40. if (!$r) {
  41. $m = oci_error($c);
  42. echo 'Could not commit: '. $m['message'] . "\n";
  43. }
  44. // Clean up
  45. $stmtarray = array(
  46. "drop table commit_002_tab"
  47. );
  48. oci8_test_sql_execute($c, $stmtarray);
  49. ?>
  50. ===DONE===
  51. <?php exit(0); ?>
  52. --EXPECTF--
  53. First Insert
  54. Could not execute: ORA-02290: %s (%s.COMMIT_002_TAB_CHECK_X) %s
  55. Second Insert
  56. Warning: oci_commit(): ORA-02091: %s
  57. ORA-02290: %s (%s.COMMIT_002_TAB_CHECK_Y) %s in %scommit_002.php on line %d
  58. Could not commit: ORA-02091: %s
  59. ORA-02290: %s (%s.COMMIT_002_TAB_CHECK_Y) %s
  60. ===DONE===