php-src/ext/oci8/tests/conn_attr_5.phpt
Christopher Jones 2769ae0444 1. Introduce connection attribute functions:
oci_set_module_name
         oci_set_action
         oci_set_client_info
         oci_set_client_identifier
      
       These functions set values that are visible and used by the
       database.  They aid tracing, authentication and auditing.

    2. Introduce connection attribute function:

         oci_set_edition

       Oracle 11g R2 "editions" allow multiple versions of DB objects
       to exist at one time.  By setting different editions, two
       different versions of an application can run concurrently,
       making upgrades or A/B testing easier.

    3. Introduce OCI_NO_AUTO_COMMIT as an alias for the OCI_DEFAULT
       constant (which is not the default value) used by oci_execute().

    4. Allow the oci_set_prefetch value to be 0.  This is important in
       some cases using REF CURSORS in Oracle 11gR2.

    5. Set the DRIVER_NAME attribute of Oracle Database 11gR2
       connections to aid application tracing.  The value used is to
       "PHP OCI8" followed by the OCI8 version number.  Note the
       version number may get truncated in DB views such as
       v$session_connect_info.

    6. Generate an error if an invalid resource type is used in
       oci_bind_by_name

[DOC] Documentation will be added for the changes
2009-10-06 22:36:32 +00:00

77 lines
2.2 KiB
PHP

--TEST--
Set and get connection attributes with scope end.
--SKIPIF--
<?php 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 output might vary with DRCP");
$sv = oci_server_version($c);
$sv = preg_match('/Release 1[012]\./', $sv, $matches);
if ($sv == 1) {
ob_start();
phpinfo(INFO_MODULES);
$phpinfo = ob_get_clean();
$iv = preg_match('/Oracle .*Version => 1[012]\./', $phpinfo);
if ($iv != 1) {
die ("skip test expected to work only with Oracle 10g or greater version of client");
}
}
else {
die ("skip test expected to work only with Oracle 10g or greater version of server");
}
?>
--FILE--
<?php
require(dirname(__FILE__)."/conn_attr.inc");
echo"**Test - Set and get values for the attributes with scope end ************\n";
// Set the attributes in one scope and verify the values from another scope.
set_scope();
echo "Get the Values from a different scope \n";
get_scope();
function set_scope() {
$conn1 = get_conn(1);
set_attr($conn1,'CLIENT_INFO',50);
set_attr($conn1,'CLIENT_IDENTIFIER',50);
$conn2 = get_conn(3);
set_attr($conn2,'ACTION',50);
$conn3 = get_conn(2);
set_attr($conn3,'MODULE',50);
}
function get_scope() {
$conn1 = get_conn(1);
get_attr($conn1,'CLIENT_INFO');
get_attr($conn1,'CLIENT_IDENTIFIER');
$conn2 = get_conn(3);
get_attr($conn2,'ACTION');
$conn3 = get_conn(2);
get_attr($conn3,'MODULE');
}
clean_up($c);
echo "Done";
?>
--EXPECTF--
**Test - Set and get values for the attributes with scope end ************
Testing with oci_connect()
Value of CLIENT_INFO has been set successfully
Value of CLIENT_IDENTIFIER has been set successfully
Testing with oci_new_connect()
Value of ACTION has been set successfully
Testing with oci_pconnect()
Value of MODULE has been set successfully
Get the Values from a different scope
Testing with oci_connect()
The value of CLIENT_INFO is
The value of CLIENT_IDENTIFIER is
Testing with oci_new_connect()
The value of ACTION is
Testing with oci_pconnect()
The value of MODULE is PHP TEST50
Done