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