Home
last modified time | relevance | path

Searched refs:lob (Results 1 – 24 of 24) sorted by relevance

/PHP-8.0/ext/oci8/tests/
H A Dlob_null.phpt41 $lob->writeTemporary(null);
48 $lob->close();
55 $lob->writeTemporary('');
62 $lob->close();
76 $lob->close();
92 $lob->close();
99 $lob->writeTemporary('');
106 $lob->close();
120 $lob->close();
130 $lob->save(null);
[all …]
H A Dbug70700.phpt48 $lob = $row['DATA'];
50 while (! $lob->eof()) {
54 $lob->free();
79 $lob = $row['DATA'];
81 while (! $lob->eof()) {
85 $lob->free();
110 $lob = $row['DATA'];
112 while (! $lob->eof()) {
116 $lob->free();
141 $lob = $row['DATA'];
[all …]
H A Dlob_037.phpt28 var_dump($blob->write("first lob data"));
45 var_dump($blob->write("second lob data"));
69 string(14) "first lob data"
70 string(15) "second lob data"
H A Dxmltype_02.phpt55 $lob = oci_new_descriptor($c, OCI_D_LOB);
56 oci_bind_by_name($s, ':clob', $lob, -1, OCI_B_CLOB);
57 $lob->writeTemporary($xml);
59 $lob->close();
86 $lob = oci_new_descriptor($c, OCI_D_LOB);
87 oci_bind_by_name($s, ':clob', $lob, -1, OCI_B_CLOB);
88 $lob->writeTemporary($sx->asXml());
90 $lob->close();
H A Dnull_byte_1.phpt24 $lob = oci_new_descriptor($c, OCI_D_LOB);
26 $lob->saveFile("/tmp/abc\0def");
34 $lob->export("/tmp/abc\0def");
H A Dbug36010.phpt2 Bug #36010 (Crash when executing SQL statement with lob parameter twice)
15 $sql = "begin :p_clob := 'lob string'; end;";
H A Dxmltype_01.phpt63 $lob = oci_new_descriptor($c, OCI_D_LOB);
64 oci_bind_by_name($s, ':clob', $lob, -1, OCI_B_CLOB);
65 $lob->writeTemporary($sx->asXml());
67 $lob->close();
H A Dlob_temp2.phpt2 Writing temporary lob before binding
H A Dbug44008.phpt32 // Incorrectly closing the lob doesn't cause a crash.
H A Dlob_013.phpt2 lob buffering
H A Dlob_034.phpt2 lob buffering - 2
H A Dlob_022.phpt2 fetching the same lob several times
H A Dlob_042.phpt57 Warning: OCILob::writeTemporary(): Invalid temporary lob type: %d in %s on line %d
H A Dlob_018.phpt2 fetching the same lob several times
/PHP-8.0/ext/pdo_pgsql/tests/
H A Dgh9411.phpt19 var_dump($lob = $db->pgsqlLOBOpen($oid, 'wb'));
20 fwrite($lob, 'test');
22 var_dump($lob);
26 var_dump($lob = $db->pgsqlLOBOpen($oid, 'wb'));
27 fwrite($lob, 'test');
29 var_dump($lob);
32 var_dump($lob = $db->pgsqlLOBOpen($oid, 'wb'));
33 var_dump(fgets($lob));
H A Dlarge_objects.phpt37 $stmt->bindColumn('bloboid', $lob, PDO::PARAM_LOB);
42 var_dump(stream_get_contents($lob));
49 $stmt->bindColumn('bloboid', $lob, PDO::PARAM_LOB);
60 $stmt->bindColumn('bloboid', $lob, PDO::PARAM_LOB);
/PHP-8.0/ext/pgsql/
H A Dpgsql.stub.php302 /** @param resource $lob */
306 * @param resource $lob
312 /** @param resource $lob */
316 * @param resource $lob
322 /** @param resource $lob */
326 * @param resource $lob
332 /** @param resource $lob */
336 * @param resource $lob
378 /** @param resource $lob */
381 /** @param resource $lob */
[all …]
H A Dpgsql_arginfo.h228 ZEND_ARG_INFO(0, lob)
234 ZEND_ARG_INFO(0, lob)
241 ZEND_ARG_INFO(0, lob)
249 ZEND_ARG_INFO(0, lob)
271 ZEND_ARG_INFO(0, lob)
279 ZEND_ARG_INFO(0, lob)
/PHP-8.0/ext/oci8/
H A Doci8.stub.php31 function oci_free_descriptor(OCILob $lob): bool {} argument
37 function ocifreedesc(OCILob $lob): bool {} argument
55 function oci_lob_load(OCILob $lob): string|false {} argument
61 function ociloadlob(OCILob $lob): string|false {} argument
65 function oci_lob_eof(OCILob $lob): bool {} argument
67 function oci_lob_tell(OCILob $lob): int|false {} argument
69 function oci_lob_rewind(OCILob $lob): bool {} argument
73 function oci_lob_size(OCILob $lob): int|false {} argument
83 function oci_lob_flush(OCILob $lob, int $flag = 0): bool {} argument
85 function ocisetbufferinglob(OCILob $lob, bool $mode): bool {} argument
[all …]
H A Doci8_lob.c399 OCILobLocator *lob = (OCILobLocator *) descriptor->descriptor; in php_oci_lob_write() local
421 lob, in php_oci_lob_write()
613 OCILobLocator *lob = descriptor->descriptor; in php_oci_lob_flush() local
617 if (!lob) { in php_oci_lob_flush()
707 OCILobLocator *lob = (OCILobLocator *)descriptor->descriptor; in php_oci_lob_import() local
728 lob, in php_oci_lob_import()
796 OCILobLocator *lob = descriptor->descriptor; in php_oci_lob_truncate() local
838 OCILobLocator *lob = descriptor->descriptor; in php_oci_lob_erase() local
896 OCILobLocator *lob = descriptor->descriptor; in php_oci_lob_write_tmp() local
919 lob, in php_oci_lob_write_tmp()
[all …]
H A Doci8_arginfo.h33 ZEND_ARG_OBJ_INFO(0, lob, OCILob, 0)
39 ZEND_ARG_OBJ_INFO(0, lob, OCILob, 0)
47 ZEND_ARG_OBJ_INFO(0, lob, OCILob, 0)
54 ZEND_ARG_OBJ_INFO(0, lob, OCILob, 0)
60 ZEND_ARG_OBJ_INFO(0, lob, OCILob, 0)
67 ZEND_ARG_OBJ_INFO(0, lob, OCILob, 0)
73 ZEND_ARG_OBJ_INFO(0, lob, OCILob, 0)
81 ZEND_ARG_OBJ_INFO(0, lob, OCILob, 0)
92 ZEND_ARG_OBJ_INFO(0, lob, OCILob, 0)
97 ZEND_ARG_OBJ_INFO(0, lob, OCILob, 0)
[all …]
/PHP-8.0/ext/pdo_oci/
H A Doci_statement.c50 static php_stream *oci_create_lob_stream(zval *dbh, pdo_stmt_t *stmt, OCILobLocator *lob);
52 #define OCI_TEMPLOB_CLOSE(envhp, svchp, errhp, lob) \ argument
56 OCILobIsTemporary(envhp, errhp, lob, &isTempLOB); \
58 OCILobFreeTemporary(svchp, errhp, lob); \
620 OCILobLocator *lob; member
632 r = OCILobWrite(self->E->svc, self->E->err, self->lob, in oci_blob_write()
652 r = OCILobRead(self->E->svc, self->E->err, self->lob, in oci_blob_read()
675 OCILobClose(self->E->svc, self->E->err, self->lob); in oci_blob_close()
689 OCILobFlushBuffer(self->E->svc, self->E->err, self->lob, 0); in oci_blob_flush()
717 static php_stream *oci_create_lob_stream(zval *dbh, pdo_stmt_t *stmt, OCILobLocator *lob) in oci_create_lob_stream() argument
[all …]
/PHP-8.0/ext/pdo_oci/tests/
H A Dpdo_oci_stream_2.phpt74 // Since each column only has one lob descriptor, the last row is
75 // shown twice because the lob descriptor for each column is reused in
H A Dbug57702.phpt108 // Since each column only has one lob descriptor, the last row is
109 // shown twice because the lob descriptor for each column is reused in

Completed in 49 milliseconds