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