/PHP-7.2/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 | bug70700.phpt | 48 $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 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 statement 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_018.phpt | 2 fetching the same lob several times
|
H A D | lob_022.phpt | 2 fetching the same lob several times
|
/PHP-7.2/ext/oci8/ |
H A D | oci8_lob.c | 401 OCILobLocator *lob = (OCILobLocator *) descriptor->descriptor; in php_oci_lob_write() local 423 lob, in php_oci_lob_write() 615 OCILobLocator *lob = descriptor->descriptor; in php_oci_lob_flush() local 619 if (!lob) { in php_oci_lob_flush() 709 OCILobLocator *lob = (OCILobLocator *)descriptor->descriptor; in php_oci_lob_import() local 730 lob, in php_oci_lob_import() 798 OCILobLocator *lob = descriptor->descriptor; in php_oci_lob_truncate() local 840 OCILobLocator *lob = descriptor->descriptor; in php_oci_lob_erase() local 898 OCILobLocator *lob = descriptor->descriptor; in php_oci_lob_write_tmp() local 921 lob, in php_oci_lob_write_tmp() [all …]
|
/PHP-7.2/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-7.2/ext/pdo_oci/ |
H A D | oci_statement.c | 54 static php_stream *oci_create_lob_stream(zval *dbh, pdo_stmt_t *stmt, OCILobLocator *lob); 56 #define OCI_TEMPLOB_CLOSE(envhp, svchp, errhp, lob) \ argument 60 OCILobIsTemporary(envhp, errhp, lob, &isTempLOB); \ 62 OCILobFreeTemporary(svchp, errhp, lob); \ 637 OCILobLocator *lob; member 649 r = OCILobWrite(self->E->svc, self->E->err, self->lob, in oci_blob_write() 669 r = OCILobRead(self->E->svc, self->E->err, self->lob, in oci_blob_read() 692 OCILobClose(self->E->svc, self->E->err, self->lob); in oci_blob_close() 706 OCILobFlushBuffer(self->E->svc, self->E->err, self->lob, 0); in oci_blob_flush() 734 static php_stream *oci_create_lob_stream(zval *dbh, pdo_stmt_t *stmt, OCILobLocator *lob) in oci_create_lob_stream() argument [all …]
|
/PHP-7.2/ext/pdo_oci/tests/ |
H A D | pdo_oci_stream_2b.phpt | 20 // Since each column only has one lob descriptor, the last row is 21 // shown twice because the lob descriptor for each column is reused in
|
H A D | bug57702.phpt | 108 // 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
|