summaryrefslogtreecommitdiff
path: root/tests/conn_attr_2.phpt
blob: 4765d5eb7b8702426d10c0f0f450d898d987bc63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
--TEST--
Set and get of connection attributes across persistent connections and sysdba connection.
--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");
}
?>
--INI--
oci8.privileged_connect = On
--FILE--

<?php
require(dirname(__FILE__)."/conn_attr.inc");
$user='testuser';
$password='testuser';
$attr_array = array('MODULE','ACTION','CLIENT_INFO','CLIENT_IDENTIFIER');

echo"**Set values using pconnect-1**\n";

var_dump($pc1 = oci_pconnect($user,$password,$dbase));
foreach($attr_array as $attr) {
	set_attr($pc1,$attr,100);
}

//  using pc1 again
echo"\n**Get values using pconnect-2**\n";
var_dump($pc3 = oci_pconnect($user,$password,$dbase));
foreach($attr_array as $attr) {
	get_attr($pc3,$attr);
}

// Get with different pconnect
echo"\n**Get values using pconnect-3**\n";
var_dump($pc2 = oci_pconnect($user,$password,$dbase,'UTF8'));
foreach($attr_array as $attr) {
	get_attr($pc2,$attr);
}

oci_close($pc1);
oci_close($pc2);
oci_close($pc3);

// Re-open a persistent connection and check for the attr values.
echo "\n**Re-open a pconnect()**\n";
var_dump($pc4 = oci_pconnect($user,$password,$dbase));
foreach($attr_array as $attr) {
	get_attr($pc4,$attr);
}
oci_close($pc4);

// Test with SYSDBA connection.
var_dump($sys_c1 = oci_pconnect($user,$password,$dbase,false,OCI_SYSDBA));
if ($sys_c1) {
	set_attr($sys_c1,'ACTION',10);
	get_sys_attr($sys_c1,'ACTION');
	get_attr($pc2,'ACTION');
	oci_close($sys_c1);
}

clean_up($c);

echo "Done\n";
?>
--EXPECTF--
**Set values using pconnect-1**
resource(%d) of type (oci8 persistent connection)
Value of MODULE has been set successfully
Value of ACTION has been set successfully
Value of CLIENT_INFO has been set successfully
Value of CLIENT_IDENTIFIER has been set successfully

**Get values using pconnect-2**
resource(%d) of type (oci8 persistent connection)
The value of MODULE is PHP TEST100
The value of ACTION is TASK100
The value of CLIENT_INFO is INFO1100
The value of CLIENT_IDENTIFIER is ID00100

**Get values using pconnect-3**
resource(%d) of type (oci8 persistent connection)
The value of MODULE is %s
The value of ACTION is 
The value of CLIENT_INFO is 
The value of CLIENT_IDENTIFIER is 

**Re-open a pconnect()**
resource(%d) of type (oci8 persistent connection)
The value of MODULE is PHP TEST100
The value of ACTION is TASK100
The value of CLIENT_INFO is INFO1100
The value of CLIENT_IDENTIFIER is ID00100

Warning: oci_pconnect(): ORA-01031: %s on line %d
bool(false)
Done