We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44fdd25 commit 13760c2Copy full SHA for 13760c2
ext/pdo/tests/pdo_017.phpt
@@ -12,6 +12,7 @@ PDOTest::skip();
12
$db = PDOTest::factory();
13
try {
14
$db->beginTransaction();
15
+ $db->rollback();
16
} catch (PDOException $e) {
17
die('skip no working transactions: ' . $e->getMessage());
18
}
@@ -65,7 +66,6 @@ echo countRows('delete');
65
66
$db->commit();
67
68
echo countRows('commit');
-
69
?>
70
--CLEAN--
71
<?php
ext/pdo_firebird/tests/ddl.phpt
@@ -34,8 +34,8 @@ echo "done\n";
34
35
36
37
-require_once getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
38
require("testdb.inc");
+$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
39
@$dbh->exec('DROP TABLE test_ddl');
40
@$dbh->exec('DROP GENERATOR gen_test_ddl_id');
41
@$dbh->exec('DROP TRIGGER test_ddl_bi');
0 commit comments