xref: /PHP-8.3/ext/oci8/tests/lob_005.phpt (revision a53e5617)
1--TEST--
2oci_lob_is_equal()
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
29oci_commit($c);
30
31$select_sql = "SELECT blob FROM ".$schema.$table_name." FOR UPDATE";
32$s = oci_parse($c, $select_sql);
33oci_execute($s, OCI_DEFAULT);
34
35var_dump($row = oci_fetch_array($s));
36
37var_dump(oci_lob_is_equal($row[0], $row['BLOB']));
38
39require __DIR__.'/drop_table.inc';
40
41echo "Done\n";
42
43?>
44--EXPECTF--
45array(2) {
46  [0]=>
47  object(OCILob)#%d (1) {
48    ["descriptor"]=>
49    resource(%d) of type (oci8 descriptor)
50  }
51  ["BLOB"]=>
52  object(OCILob)#%d (1) {
53    ["descriptor"]=>
54    resource(%d) of type (oci8 descriptor)
55  }
56}
57bool(true)
58Done
59