xref: /PHP-8.1/ext/oci8/tests/lob_009.phpt (revision b5a14e6c)
1--TEST--
2oci_lob_import()/read()
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
28var_dump($blob);
29var_dump($blob->seek(10, OCI_SEEK_CUR));
30var_dump($blob->import(__DIR__."/lob_009.txt"));
31oci_commit($c);
32
33$select_sql = "SELECT blob FROM ".$schema.$table_name." FOR UPDATE";
34$s = oci_parse($c, $select_sql);
35oci_execute($s, OCI_DEFAULT);
36
37var_dump($row = oci_fetch_array($s));
38
39while (!$row[0]->eof()) {
40    var_dump(str_replace("\r", "", $row[0]->read(1024)));
41}
42
43require __DIR__.'/drop_table.inc';
44
45echo "Done\n";
46
47?>
48--EXPECTF--
49object(OCILob)#%d (1) {
50  ["descriptor"]=>
51  resource(%d) of type (oci8 descriptor)
52}
53bool(true)
54bool(true)
55array(2) {
56  [0]=>
57  object(OCILob)#%d (1) {
58    ["descriptor"]=>
59    resource(%d) of type (oci8 descriptor)
60  }
61  ["BLOB"]=>
62  object(OCILob)#%d (1) {
63    ["descriptor"]=>
64    resource(%d) of type (oci8 descriptor)
65  }
66}
67string(43) "this
68is
69a
70test
71file for
72test lob_009.phpt
73"
74Done
75