summaryrefslogtreecommitdiff
path: root/ext/pdo_oci
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2005-09-20 00:35:21 +0000
committerIlia Alshanetsky <iliaa@php.net>2005-09-20 00:35:21 +0000
commitbfe844e41e159460867826ce8559c670c2f24ec9 (patch)
tree674ca55042d8987fe6afd286d1347bcff931e302 /ext/pdo_oci
parent9986219353e6ced428356f11aedb20eae8bf2865 (diff)
downloadphp-git-bfe844e41e159460867826ce8559c670c2f24ec9.tar.gz
MFH: Make PDO use class constants
Diffstat (limited to 'ext/pdo_oci')
-rw-r--r--ext/pdo_oci/tests/bug_33707.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_oci/tests/bug_33707.phpt b/ext/pdo_oci/tests/bug_33707.phpt
index 78d3419b60..6583115778 100644
--- a/ext/pdo_oci/tests/bug_33707.phpt
+++ b/ext/pdo_oci/tests/bug_33707.phpt
@@ -11,7 +11,7 @@ PDOTest::skip();
<?php
require 'ext/pdo/tests/pdo_test.inc';
$db = PDOTest::test_factory('ext/pdo_oci/tests/common.phpt');
-$db->setAttribute(PDO_ATTR_ERRMODE, PDO_ERRMODE_SILENT);
+$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT);
$rs = $db->query('select blah from a_table_that_doesnt_exist');
var_dump($rs);