xref: /PHP-5.5/ext/oci8/tests/descriptors.phpt (revision c7a8bd6a)
1--TEST--
2commit connection after destroying the descriptor
3--SKIPIF--
4<?php
5$target_dbs = array('oracledb' => true, 'timesten' => false);  // test runs on these DBs
6require(dirname(__FILE__).'/skipif.inc');
7?>
8--FILE--
9<?php
10
11require dirname(__FILE__).'/connect.inc';
12require dirname(__FILE__).'/create_table.inc';
13
14$ora_sql = "INSERT INTO
15			".$schema.$table_name." (blob)
16			VALUES (empty_blob())
17			RETURNING
18			blob
19			INTO :v_blob ";
20
21$statement = oci_parse($c,$ora_sql);
22$blob = oci_new_descriptor($c,OCI_D_LOB);
23oci_bind_by_name($statement,":v_blob", $blob,-1,OCI_B_BLOB);
24oci_execute($statement, OCI_DEFAULT);
25
26unset($blob);
27unset($statement);
28
29oci_commit($c);
30
31$ora_sql = "SELECT blob FROM ".$schema.$table_name." ";
32$statement = oci_parse($c,$ora_sql);
33oci_execute($statement, OCI_DEFAULT);
34
35var_dump($row = oci_fetch_assoc($statement));
36unset($row['BLOB']);
37
38oci_commit($c);
39
40require dirname(__FILE__).'/drop_table.inc';
41
42echo "Done\n";
43?>
44--EXPECTF--
45array(1) {
46  ["BLOB"]=>
47  object(OCI-Lob)#%d (1) {
48    ["descriptor"]=>
49    resource(%d) of type (oci8 descriptor)
50  }
51}
52Done
53