Searched refs:lob (Results 1 – 17 of 17) sorted by relevance
/PHP-5.6/ext/oci8/tests/ |
H A D | lob_null.phpt | 41 $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 D | xmltype_02.phpt | 55 $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 D | lob_037.phpt | 28 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 D | null_byte_1.phpt | 25 $lob = oci_new_descriptor($c, OCI_D_LOB); 26 $r = $lob->savefile("/tmp/abc\0def"); 31 $r = $lob->export("/tmp/abc\0def");
|
H A D | bug36010.phpt | 2 Bug #36010 (Crash when executing SQL statment with lob parameter twice) 15 $sql = "begin :p_clob := 'lob string'; end;";
|
H A D | xmltype_01.phpt | 63 $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 D | lob_temp2.phpt | 2 Writing temporary lob before binding
|
H A D | bug44008.phpt | 32 // Incorrectly closing the lob doesn't cause a crash.
|
H A D | lob_013.phpt | 2 lob buffering
|
H A D | lob_034.phpt | 2 lob buffering - 2
|
H A D | lob_042.phpt | 52 Warning: OCI-Lob::writetemporary(): Invalid temporary lob type: %d in %s on line %d
|
H A D | lob_022.phpt | 2 fetching the same lob several times
|
H A D | lob_018.phpt | 2 fetching the same lob several times
|
/PHP-5.6/ext/pdo_pgsql/tests/ |
H A D | large_objects.phpt | 37 $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.6/ext/oci8/ |
H A D | oci8_lob.c | 406 OCILobLocator *lob = (OCILobLocator *) descriptor->descriptor; in php_oci_lob_write() local 428 lob, in php_oci_lob_write() 620 OCILobLocator *lob = descriptor->descriptor; in php_oci_lob_flush() local 624 if (!lob) { in php_oci_lob_flush() 714 OCILobLocator *lob = (OCILobLocator *)descriptor->descriptor; local 740 lob, 808 OCILobLocator *lob = descriptor->descriptor; local 830 …PHP_OCI_CALL_RETURN(errstatus, OCILobTrim, (connection->svc, connection->err, lob, new_lob_length)… 850 OCILobLocator *lob = descriptor->descriptor; local 908 OCILobLocator *lob = descriptor->descriptor; local [all …]
|
/PHP-5.6/ext/pdo_oci/ |
H A D | oci_statement.c | 54 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.6/ext/pdo_oci/tests/ |
H A D | bug57702.phpt | 109 // 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 37 milliseconds