xref: /PHP-8.0/ext/oci8/tests/descriptors.phpt (revision ff66e494)
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(__DIR__.'/skipif.inc');
7?>
8--FILE--
9<?php
10
11require __DIR__.'/connect.inc';
12require __DIR__.'/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 __DIR__.'/drop_table.inc';
41
42echo "Done\n";
43?>
44--EXPECTF--
45array(1) {
46  ["BLOB"]=>
47  object(OCILob)#%d (1) {
48    ["descriptor"]=>
49    resource(%d) of type (oci8 descriptor)
50  }
51}
52Done
53