php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #38972 OCI-Lob->loa return broken character
Submitted: 2006-09-27 07:59 UTC Modified: 2006-10-05 01:00 UTC
Votes:2
Avg. Score:4.0 ± 1.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:1 (100.0%)
From: masui at emplex dot co dot jp Assigned:
Status: No Feedback Package: OCI8 related
PHP Version: 5.2.0RC4 OS: linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
11 - 1 = ?
Subscribe to this entry?

 
 [2006-09-27 07:59 UTC] masui at emplex dot co dot jp
Description:
------------
OCI-Lob->load returns broken character or nothing in php 5.2.0RC4.
It is occurred in 64bit linux, in 32bit linux OCI-Lob->read returns correct multibyte string.

My Oracle database is R10.2.0.2.0, charset is AL32UTF8.

Downgrading to php 5.2.0RC1, it works correct, so this might be bug.

Best regards
Hideaki Masui

Reproduce code:
---------------
$conn = oci_connect('scot', 'tiger', 'xxx');
if (!$conn) exit;

$query = 'SELECT LOBDATA FROM LOBTEST';

$stid = oci_parse($conn, $query);
if (!$stid) exit;

$r = oci_execute($stid, OCI_DEFAULT);
if (!$r)  exit;

while ($row = oci_fetch_array($stid, OCI_RETURN_NULLS)) {

  echo $row['LOBDATA']->load() ."\n";

}

oci_close($conn);

Expected result:
----------------
The "echo $row['LOBDATA']->load();" line should return
the actual mulitibyte string from the select statement.


Actual result:
--------------
$row['LOBDATA']->load() returns broken character or nothing.


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-09-27 09:15 UTC] tony2001@php.net
Cannot reproduce.
Make sure your NLS_LANG is set and equals to something similar to ".AL32UTF8".
 [2006-09-27 09:56 UTC] masui at emplex dot co dot jp
Yes, I set ".AL32UTF8" to NLS_LANG.

My CLOB data in Oracle is "?Z?????O?l?ܘZ??????".

Broken is only 64bit Linux only, 32bit linx is ok.
 [2006-09-27 10:04 UTC] tony2001@php.net
How did you set NLS_LANG? How do you test it?

>Broken is only 64bit Linux only, 32bit linx is ok.
I'm testing on 64bit host and it works perfectly fine with Oracle10g/UTF8.
 [2006-09-27 10:53 UTC] masui at emplex dot co dot jp
I set NLS_LANG in /usr/local/apache2/bin/envvars.

Following is my setting.
export ORACLE_BASE=/home/oracle
export ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1
export NLS_LANG=.AL32UTF8
export PATH=$PATH:$ORACLE_HOME/bin
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib
export ORA_NLS10=$ORACLE_HOME/nls/data
export LD_PRELOAD=$ORACLE_HOME/lib/libclntsh.so.10.1

I tested by access from web browser.

Following is create table and insert data.
CREATE TABLE LOBTEST (
	LOBDATA  CLOB
);
insert INTO LOBTEST VALUES (UTL_RAW.CAST_TO_VARCHAR2('A3B0A3B1A3B2A3B3A3B4A3B5A3B6A3B7A3B8A3B9'));
 [2006-09-27 11:00 UTC] tony2001@php.net
Just insert plain Unicode data and select it from the table.
 [2006-09-27 11:01 UTC] tony2001@php.net
This is what I get back when I insert UTL_RAW.CAST_TO_VARCHAR2('A3B0A3B1A3B2A3B3A3B4A3B5A3B6A3B7A3B8A3B9'):

string(40) "�Zˆ?“?ŽOŽlŒ?˜ZŽ?”?‹?"

 [2006-09-27 11:02 UTC] tony2001@php.net
...which is exactly what you posted earlier:
"My CLOB data in Oracle is "�Zˆ?“?ŽOŽlŒ?˜ZŽ?”?‹?"."
 [2006-09-27 11:15 UTC] masui at emplex dot co dot jp
Yes, your CLOB DATA is correct.

I tested for Japanease UTF-8.
 [2006-09-27 11:25 UTC] tony2001@php.net
So, what's the problem then?
 [2006-09-27 11:31 UTC] masui at emplex dot co dot jp
Can your CLOB data be returned by reproduce code correct?
 [2006-09-27 11:40 UTC] tony2001@php.net
Yes, with your code I get valid Unicode data I inserted before.
Please try to run it in console (but don't forget to set NLS_LANG first).
 [2006-09-27 12:11 UTC] masui at emplex dot co dot jp
Following is my php configure option. Is it correct?

./configure \
--with-apxs2=/usr/local/apache2/bin/apxs \
--enable-mbstring \
--enable-mbregex \
--with-zlib \
--with-curl \
--with-dom \
--with-dom-xslt \
--with-openssl \
--enable-sigchild \
--with-oci8=/home/oracle/product/10.2.0/db_1 \
 [2006-09-27 12:20 UTC] tony2001@php.net
I don't see any problems, though I would test it with --disable-all --with-oci8=<...> instead.
 [2006-10-05 01:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 07:01:27 2024 UTC