|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-05-17 12:48 UTC] emmanuel dot chauvet at sitel-fr dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 08:00:02 2025 UTC |
Description: ------------ Since 5.1.2 -> 5.1.4 migration, we have a bug in the oci8 functions when we want to display Oracle LOB. Source code is working for 5.1.2 , not any more for 5.1.4 version. Reproduce code: --------------- $sql = "SELECT TEMPLATEID, LABEL, DESCRIPTION, HTML, TXT, CONTENTTYPE, BIN FROM TEMPLATECONTENT WHERE TEMPLATEID='301' AND LOCALE='fr_FR'"; $stmt = oci_parse( $conn, $sql ); oci_execute( $stmt ); while( $row = oci_fetch_row( $stmt ) ) { $reponse_type[2] = $row[2]->load(); } Expected result: ---------------- Expects the content of the oracle lob 5.1.2 version -> content displayed OK 5.1.4 version -> no content displayed