summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/edition_2.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/edition_2.phpt')
-rw-r--r--ext/oci8/tests/edition_2.phpt18
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/oci8/tests/edition_2.phpt b/ext/oci8/tests/edition_2.phpt
index 12e902667e..6d56f9be5c 100644
--- a/ext/oci8/tests/edition_2.phpt
+++ b/ext/oci8/tests/edition_2.phpt
@@ -2,14 +2,14 @@
Set and check Oracle 11gR2 "edition" attribute
--SKIPIF--
<?php
-if (!extension_loaded('oci8')) die("skip no oci8 extension");
+if (!extension_loaded('oci8')) die("skip no oci8 extension");
require(dirname(__FILE__)."/connect.inc");
if (strcasecmp($user, "system") && strcasecmp($user, "sys"))
die("skip needs to be run as a DBA user");
if ($test_drcp)
die("skip as Output might vary with DRCP");
preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
-if (!(isset($matches[0]) &&
+if (!(isset($matches[0]) &&
(($matches[1] == 11 && $matches[2] >= 2) ||
($matches[1] >= 12)
))) {
@@ -33,7 +33,7 @@ if (!(isset($matches[0]) &&
*/
$testuser = 'testuser_ed_2'; // Used in conn_attr.inc
-$testpassword = 'testuser';
+$testpassword = 'testuser';
require(dirname(__FILE__)."/conn_attr.inc");
@@ -113,7 +113,7 @@ echo "\n\n**Test 1.7 - Test with ALTER SESSION statement to change the edition *
set_edit_attr('MYEDITION');
$c1 = get_conn(3);
-echo "get the value set to MYEDITION with oci_set_edition \n";
+echo "get the value set to MYEDITION with oci_set_edition\n";
get_edit_attr($c1);
$alter_stmt = "alter session set edition = MYEDITION1";
@@ -123,7 +123,7 @@ oci_commit($c1);
echo "Get the value set to MYEDITION1 with alter session\n";
get_edit_attr($c1);
-echo " Get the value with a new connection \n";
+echo " Get the value with a new connection\n";
$c2 = get_conn(1);
get_edit_attr($c2);
@@ -131,7 +131,7 @@ echo " Set the value back using oci-set_edition\n";
set_edit_attr('MYEDITION');
get_edit_attr($c2);
-echo " Get the value with a new conenction \n";
+echo " Get the value with a new conenction\n";
$c3 = get_conn(1);
get_edit_attr($c3);
@@ -225,17 +225,17 @@ The value of current EDITION is MYEDITION1
**Test 1.7 - Test with ALTER SESSION statement to change the edition *******
The value of edition has been successfully set
Testing with oci_new_connect()
-get the value set to MYEDITION with oci_set_edition
+get the value set to MYEDITION with oci_set_edition
The value of current EDITION is MYEDITION
Get the value set to MYEDITION1 with alter session
The value of current EDITION is MYEDITION1
- Get the value with a new connection
+ Get the value with a new connection
Testing with oci_connect()
The value of current EDITION is MYEDITION
Set the value back using oci-set_edition
The value of edition has been successfully set
The value of current EDITION is MYEDITION
- Get the value with a new conenction
+ Get the value with a new conenction
Testing with oci_connect()
The value of current EDITION is MYEDITION