Searched refs:lob (Results 1 – 16 of 16) sorted by relevance
/PHP-5.3/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 | 17 $lob = oci_new_descriptor($c, OCI_D_LOB); 18 $r = $lob->savefile("/tmp/abc\0def"); 23 $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 | 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_018.phpt | 2 fetching the same lob several times
|
H A D | lob_022.phpt | 2 fetching the same lob several times
|
H A D | bug43497_92.phpt | 162 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.3/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.3/ext/oci8/ |
H A D | oci8_lob.c | 429 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.3/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); 604 OCILobLocator *lob; member 615 r = OCILobWrite(self->S->H->svc, self->S->err, self->lob, in oci_blob_write() 635 r = OCILobRead(self->S->H->svc, self->S->err, self->lob, in oci_blob_read() 656 OCILobClose(self->S->H->svc, self->S->err, self->lob); in oci_blob_close() 657 OCIDescriptorFree(self->lob, OCI_DTYPE_LOB); in oci_blob_close() 668 OCILobFlushBuffer(self->S->H->svc, self->S->err, self->lob, 0); in oci_blob_flush() 696 static php_stream *oci_create_lob_stream(pdo_stmt_t *stmt, OCILobLocator *lob TSRMLS_DC) in oci_create_lob_stream() 700 self->lob = lob; in oci_create_lob_stream()
|
Completed in 24 milliseconds