Home
last modified time | relevance | path

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

/PHP-5.5/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 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 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 Dnull_byte_1.phpt25 $lob = oci_new_descriptor($c, OCI_D_LOB);
26 $r = $lob->savefile("/tmp/abc\0def");
31 $r = $lob->export("/tmp/abc\0def");
H A Dbug36010.phpt2 Bug #36010 (Crash when executing SQL statment 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_013.phpt2 lob buffering
H A Dbug44008.phpt32 // Incorrectly closing the lob doesn't cause a crash.
H A Dlob_034.phpt2 lob buffering - 2
H A Dlob_042.phpt52 Warning: OCI-Lob::writetemporary(): Invalid temporary lob type: %d in %s on line %d
H A Dlob_018.phpt2 fetching the same lob several times
H A Dlob_022.phpt2 fetching the same lob several times
H A Dbug43497_92.phpt162 echo "\nExplicit LOB with no free (i.e. a temp lob leak)\n";
264 Explicit LOB with no free (i.e. a temp lob leak)
/PHP-5.5/ext/pdo_pgsql/tests/
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-5.5/ext/oci8/
H A Doci8_lob.c429 OCILobLocator *lob = (OCILobLocator *) descriptor->descriptor; in php_oci_lob_write() local
454 lob, in php_oci_lob_write()
632 OCILobLocator *lob = descriptor->descriptor; in php_oci_lob_flush() local
635 if (!lob) { in php_oci_lob_flush()
722 OCILobLocator *lob = (OCILobLocator *)descriptor->descriptor; local
747 lob,
809 OCILobLocator *lob = descriptor->descriptor; local
830 …PHP_OCI_CALL_RETURN(connection->errcode, OCILobTrim, (connection->svc, connection->err, lob, new_l…
847 OCILobLocator *lob = descriptor->descriptor; local
899 OCILobLocator *lob = descriptor->descriptor; local
[all …]
/PHP-5.5/ext/pdo_oci/
H A Doci_statement.c54 static php_stream *oci_create_lob_stream(pdo_stmt_t *stmt, OCILobLocator *lob TSRMLS_DC);
610 OCILobLocator *lob; member
621 r = OCILobWrite(self->S->H->svc, self->S->err, self->lob, in oci_blob_write()
641 r = OCILobRead(self->S->H->svc, self->S->err, self->lob, in oci_blob_read()
662 OCILobClose(self->S->H->svc, self->S->err, self->lob); in oci_blob_close()
673 OCILobFlushBuffer(self->S->H->svc, self->S->err, self->lob, 0); in oci_blob_flush()
701 static php_stream *oci_create_lob_stream(pdo_stmt_t *stmt, OCILobLocator *lob TSRMLS_DC) in oci_create_lob_stream()
705 self->lob = lob; in oci_create_lob_stream()
/PHP-5.5/ext/pdo_oci/tests/
H A Dbug57702.phpt109 // Since each column only has one lob descriptor, the last row is
110 // shown twice because the lob descriptor for each column is reused in

Completed in 22 milliseconds