php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #57024 Reading BLOB does not work
Submitted: 2006-05-18 15:40 UTC Modified: 2006-05-29 07:24 UTC
From: vs at ez dot no Assigned: tony2001 (profile)
Status: Closed Package: oci8 (PECL)
PHP Version: 4.4.1 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 !
Your email address:
MUST BE VALID
Solve the problem:
30 + 48 = ?
Subscribe to this entry?

 
 [2006-05-18 15:40 UTC] vs at ez dot no
Description:
------------
When trying to read BLOB contents with $lob->read() or $lob->load() both functions return empty string.

If I comment
#define HAVE_OCI_LOB_READ2 1
in config.h
and thus OCILobRead() is used insted of OCILobRead2(), the bug disappears.

Conditions:
Linux Mandriva 2006, Oracle 10g XE and 9i, OIC-10.1.0.4, PHP-4.4.2, OCI8-1.2.1.

Reproduce code:
---------------
//  CREATE TABLE lob_test (lob BLOB);
$conn = oci_connect( 'scott', 'tiger', 'orcl' );
$stmt = oci_parse( $conn, 'DELETE FROM lob_test' );
oci_execute( $stmt, OCI_COMMIT_ON_SUCCESS );

$stmt = oci_parse( $conn, "INSERT INTO lob_test VALUES (EMPTY_BLOB()) RETURNING lob INTO :lob" );
$lob = oci_new_descriptor( $conn, OCI_D_LOB );
oci_bind_by_name( $stmt, ":lob", $lob, -1, OCI_B_BLOB );
oci_execute( $stmt, OCI_DEFAULT );
$lob->save( 'hello world' );
oci_commit( $conn );
$lob->free();

$stmt = oci_parse ( $conn, 'SELECT lob FROM lob_test' );
oci_execute( $stmt, OCI_DEFAULT );
$row = oci_fetch_array( $stmt, OCI_NUM );
$lob_val = $row[0]->load();
printf( "%s\n", var_export( $lob_val, true ) );
oci_free_statement( $stmt );

Expected result:
----------------
printed: 'hello world'

Actual result:
--------------
printed: ''

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-05-18 15:45 UTC] tony2001 at phpclub dot net
Can't reproduce.
What is the character set used ?
 [2006-05-18 16:08 UTC] vs at ez dot no
How to know this?
 [2006-05-18 16:15 UTC] tony2001 at phpclub dot net
select value from nls_database_parameters where parameter = 'NLS_CHARACTERSET';
 [2006-05-18 16:22 UTC] vs at ez dot no
Oracle 9i: WE8ISO8859P1
Oracle 10g XE: AL32UTF8
The bug occurs on both.
 [2006-05-18 16:34 UTC] vs at ez dot no
New info:
When I recompiled oci8 against locally installed Oracle 10g XE, the bug disappeared.
Previously oci8 was compiled against Oracle Instant Client 10.1.0.4.
Does this mean that the bug is in the OIC?
 [2006-05-18 16:46 UTC] tony2001 at phpclub dot net
Most likely yes, because I cannot reproduce it with OIC 10.1.0.3 and Oracle 9.x native client.
But I still need atleast to reproduce it to be sure.
 [2006-05-18 17:02 UTC] vs at ez dot no
Also not reproducible on OIC-10.2.0.1.
I just replaced the shared libraries and the bug disappeared.
 [2006-05-19 19:24 UTC] gogala at sbcglobal dot net
I have the same problem with PHP 5.1.4, Oracle 10.2.0.2 and
OCI8 1.2.1. Version 1.2.0 works flawlessly. The OS is FC4

httpd-devel-2.0.54-10.3
httpd-2.0.54-10.3
 [2006-05-20 02:02 UTC] gogala at sbcglobal dot net
Here is my entire phpinfo, in case it is needed:
phpinfo()
PHP Version => 5.1.4

System => Linux medo.noip.com 2.6.16-1.2108_FC4 #1 Thu May 4 23:52:01 EDT 2006 i686
Build Date => May 18 2006 22:50:47
Configure Command =>  './configure' '--with-apxs2=/usr/sbin/apxs' '--with-xmlrpc' '--with-zlib' '--with-bz2' '--with-ttf' '--with-gd' '--enable-gd-native-ttf' '--with-freetype-dir' '--with-jpeg-dir' '--with-png-dir' '--with-config-file-path=/usr/local/lib/php' '--enable-sigchild' '--without-sqlite' '--disable-mysql' '--disable-pdo'
Server API => Command Line Interface
Virtual Directory Support => disabled
Configuration File (php.ini) Path => /usr/local/lib/php/php.ini
PHP API => 20041225
PHP Extension => 20050922
Zend Extension => 220051025
Debug Build => no
Thread Safety => disabled
Zend Memory Manager => enabled
IPv6 Support => enabled
Registered PHP Streams => php, file, http, ftp, compress.bzip2, compress.zlib  
Registered Stream Socket Transports => tcp, udp, unix, udg
Registered Stream Filters => string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, convert.iconv.*, bzip2.*, zlib.*


This program makes use of the Zend Scripting Language Engine:
Zend Engine v2.1.0, Copyright (c) 1998-2006 Zend Technologies


 _______________________________________________________________________


Configuration

PHP Core

Directive => Local Value => Master Value
allow_call_time_pass_reference => Off => Off
allow_url_fopen => On => On
always_populate_raw_post_data => Off => Off
arg_separator.input => & => &
arg_separator.output => & => &
asp_tags => Off => Off
auto_append_file => no value => no value
auto_globals_jit => On => On
auto_prepend_file => no value => no value
browscap => no value => no value
default_charset => no value => no value
default_mimetype => text/html => text/html
define_syslog_variables => Off => Off
disable_classes => no value => no value
disable_functions => no value => no value
display_errors => Off => Off
display_startup_errors => Off => Off
doc_root => no value => no value
docref_ext => no value => no value
docref_root => no value => no value
enable_dl => On => On
error_append_string => no value => no value
error_log => no value => no value
error_prepend_string => no value => no value
error_reporting => 2047 => 2047
expose_php => On => On
extension_dir => /usr/local/lib/php/extensions/no-debug-non-zts-20050922 => /usr/local/lib/php/extensions/no-debug-non-zts-20050922
file_uploads => On => On
highlight.bg => #FFFFFF => #FFFFFF
highlight.comment => #FF8000 => #FF8000
highlight.default => #0000BB => #0000BB
highlight.html => #000000 => #000000
highlight.keyword => #007700 => #007700
highlight.string => #DD0000 => #DD0000
html_errors => Off => On
ignore_repeated_errors => Off => Off
ignore_repeated_source => Off => Off
ignore_user_abort => Off => Off
implicit_flush => On => Off
include_path => .:/usr/local/lib/php:/usr/local/PHP => .:/usr/local/lib/php:/usr/local/PHP
log_errors => On => On
log_errors_max_len => 1024 => 1024
magic_quotes_gpc => Off => Off
magic_quotes_runtime => Off => Off
magic_quotes_sybase => Off => Off
mail.force_extra_parameters => no value => no value
max_execution_time => 0 => 30
max_input_time => 60 => 60
open_basedir => no value => no value
output_buffering => 0 => 4096
output_handler => no value => no value
post_max_size => 8M => 8M
precision => 14 => 14
realpath_cache_size => 16K => 16K
realpath_cache_ttl => 120 => 120
register_argc_argv => On => Off
register_globals => Off => Off
register_long_arrays => Off => Off
report_memleaks => On => On
report_zend_debug => Off => Off
safe_mode => Off => Off
safe_mode_exec_dir => no value => no value
safe_mode_gid => Off => Off
safe_mode_include_dir => no value => no value
sendmail_from => no value => no value
sendmail_path => /usr/sbin/sendmail -t -i  => /usr/sbin/sendmail -t -i 
serialize_precision => 100 => 100
short_open_tag => On => On
SMTP => localhost => localhost
smtp_port => 25 => 25
sql.safe_mode => Off => Off
track_errors => Off => Off
unserialize_callback_func => no value => no value
upload_max_filesize => 2M => 2M
upload_tmp_dir => no value => no value
user_dir => no value => no value
variables_order => GPCS => GPCS
xmlrpc_error_number => 0 => 0
xmlrpc_errors => Off => Off
y2k_compliance => On => On
zend.ze1_compatibility_mode => Off => Off

bz2

BZip2 Support => Enabled
Stream Wrapper support => compress.bz2://
Stream Filter support => bzip2.decompress, bzip2.compress
BZip2 Version => 1.0.2, 30-Dec-2001

ctype

ctype functions => enabled

date

date/time support => enabled
Timezone Database Version => 2006.1
Timezone Database => internal
Default timezone => America/New_York

Directive => Local Value => Master Value
date.default_latitude => 31.7667 => 31.7667
date.default_longitude => 35.2333 => 35.2333
date.sunrise_zenith => 90.583333 => 90.583333
date.sunset_zenith => 90.583333 => 90.583333
date.timezone => no value => no value

dom

DOM/XML => enabled
DOM/XML API Version => 20031129
libxml Version => 2.6.20
HTML Support => enabled
XPath Support => enabled
XPointer Support => enabled
Schema Support => enabled
RelaxNG Support => enabled

gd

GD Support => enabled
GD Version => bundled (2.0.28 compatible)
FreeType Support => enabled
FreeType Linkage => with freetype
FreeType Version => 2.1.9
GIF Read Support => enabled
GIF Create Support => enabled
JPG Support => enabled
PNG Support => enabled
WBMP Support => enabled
XBM Support => enabled

hash

hash support => enabled
Hashing Engines => md4 md5 sha1 sha256 sha384 sha512 ripemd128 ripemd160 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru gost adler32 crc32 crc32b haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 

iconv

iconv support => enabled
iconv implementation => glibc
iconv library version => 2.3.6

Directive => Local Value => Master Value
iconv.input_encoding => ISO-8859-1 => ISO-8859-1
iconv.internal_encoding => ISO-8859-1 => ISO-8859-1
iconv.output_encoding => ISO-8859-1 => ISO-8859-1

libxml

libXML support => active
libXML Version => 2.6.20
libXML streams => enabled

oci8

OCI8 Support => enabled
Revision => $Revision: 1.293 $
Active Persistent Connections => 0
Active Connections => 0
Oracle Version => 10.1
Compile-time ORACLE_HOME => /oracle/product/10g
Libraries Used =>  
Temporary Lob support => enabled
Collections support => enabled

Directive => Local Value => Master Value
oci8.default_prefetch => 10 => 10
oci8.max_persistent => -1 => -1
oci8.old_oci_close_semantics => 0 => 0
oci8.persistent_timeout => -1 => -1
oci8.ping_interval => 60 => 60
oci8.privileged_connect => Off => Off
oci8.statement_cache_size => 20 => 20

pcre

PCRE (Perl Compatible Regular Expressions) Support => enabled
PCRE Library Version => 6.6 06-Feb-2006

posix

Revision => $Revision: 1.70.2.3 $

Reflection

Reflection => enabled
Version => $Id: php_reflection.c,v 1.164.2.33 2006/03/29 14:28:42 tony2001 Exp $

session

Session Support => enabled
Registered save handlers => files user 
Registered serializer handlers => php php_binary 

Directive => Local Value => Master Value
session.auto_start => Off => Off
session.bug_compat_42 => Off => Off
session.bug_compat_warn => On => On
session.cache_expire => 180 => 180
session.cache_limiter => nocache => nocache
session.cookie_domain => no value => no value
session.cookie_lifetime => 0 => 0
session.cookie_path => / => /
session.cookie_secure => Off => Off
session.entropy_file => no value => no value
session.entropy_length => 0 => 0
session.gc_divisor => 1000 => 1000
session.gc_maxlifetime => 1440 => 1440
session.gc_probability => 1 => 1
session.hash_bits_per_character => 5 => 5
session.hash_function => 0 => 0
session.name => PHPSESSID => PHPSESSID
session.referer_check => no value => no value
session.save_handler => files => files
session.save_path => no value => no value
session.serialize_handler => php => php
session.use_cookies => On => On
session.use_only_cookies => Off => Off
session.use_trans_sid => 0 => 0

SimpleXML

Simplexml support => enabled
Revision => $Revision: 1.151.2.22 $
Schema support => enabled

SPL

SPL support => enabled
Interfaces => Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject
Classes => AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, DirectoryIterator, DomainException, EmptyIterator, FilterIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RuntimeException, SimpleXMLIterator, SplFileInfo, SplFileObject, SplObjectStorage, SplTempFileObject, UnderflowException, UnexpectedValueException

standard

Regex Library => Bundled library enabled
Dynamic Library Support => enabled
Path to sendmail => /usr/sbin/sendmail -t -i 

Directive => Local Value => Master Value
assert.active => 1 => 1
assert.bail => 0 => 0
assert.callback => no value => no value
assert.quiet_eval => 0 => 0
assert.warning => 1 => 1
auto_detect_line_endings => 0 => 0
default_socket_timeout => 60 => 60
safe_mode_allowed_env_vars => PHP_ => PHP_
safe_mode_protected_env_vars => LD_LIBRARY_PATH => LD_LIBRARY_PATH
url_rewriter.tags => a=href,area=href,frame=src,input=src,form=fakeentry => a=href,area=href,frame=src,input=src,form=fakeentry
user_agent => no value => no value

tokenizer

Tokenizer Support => enabled

xml

XML Support => active
XML Namespace Support => active
libxml2 Version => 2.6.20

xmlreader

XMLReader => enabled

xmlrpc

core library version => xmlrpc-epi v. 0.51
php extension version => 0.51
author => Dan Libby
homepage => http://xmlrpc-epi.sourceforge.net
open sourced by => Epinions.com

xmlwriter

XMLWriter => enabled

zlib

ZLib Support => enabled
Stream Wrapper support => compress.zlib://
Stream Filter support => zlib.inflate, zlib.deflate
Compiled Version => 1.2.2.2
Linked Version => 1.2.2.2

Directive => Local Value => Master Value
zlib.output_compression => Off => Off
zlib.output_compression_level => -1 => -1
zlib.output_handler => no value => no value

Additional Modules

Module Name

Environment

Variable => Value
_ => /usr/local/bin/php
KDEDIR => /usr
GNOME_KEYRING_SOCKET => /tmp/keyring-spCPNV/socket
LESSOPEN => |/usr/bin/lesspipe.sh %s
TNS_ADMIN => /oracle/product/10g/network/admin
QTDIR => /usr/lib/qt-3.3
LPDEST => printer
GDMSESSION => gnome
ENV => /home/mgogala/.kshrc
GDM_XSERVER_LOCATION => local
SHLVL => 0
GTK_RC_FILES => /etc/gtk/gtkrc:/home/mgogala/.gtkrc-1.2-gnome2
SHELL => /bin/ksh
USER => mgogala
EDITOR => vi
SSH_ASKPASS => /usr/libexec/openssh/gnome-ssh-askpass
DESKTOP_SESSION => gnome
SSH_AGENT_PID => 2534
QT_HOME => /usr/lib/qt-3.3
ORACLE_HOME => /oracle/product/10g
DISPLAY => :0.0
PAGER => less
SDL_DSP_NOSELECT => 1
SESSION_MANAGER => local/medo.noip.com:/tmp/.ICE-unix/2506
HISTSIZE => 200
EPC_DISABLED => true
LS_COLORS => no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:
PATH => /oracle/product/10g/bin:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:/usr/X11R6/bin:/usr/local/java/bin:/usr/lib/qt-3.3/bin:/home/mgogala/bin:.
GNOME_DESKTOP_SESSION_ID => Default
DBUS_SESSION_BUS_ADDRESS => unix:abstract=/tmp/dbus-9xLHZ6WXsl,guid=f8516e442cee404f09700295741a9a00
LOGNAME => mgogala
COLORTERM => gnome-terminal
LD_LIBRARY_PATH => /oracle/product/10g/lib
XAUTHORITY => /home/mgogala/.Xauthority
WINDOWID => 23068773
TERM => vt100
ORA_NLS10 => /oracle/product/10g/nls/data
SQLPATH => /home/mgogala/sql
LANG => en_US
HOSTNAME => medo.noip.com
USERNAME => mgogala
QTINC => /usr/lib/qt-3.3/include
INPUTRC => /etc/inputrc
JAVA_HOME => /usr/local/java
MAIL => /var/spool/mail/mgogala
NLS_LANG => AMERICAN_AMERICA.WE8ISO8859P1
TWO_TASK => LOCAL
JRE => /usr/local/java/jre
PWD => /home/mgogala
LESS => -R -d
MANPATH => /usr/man:/usr/share/man:/usr/local/man:/usr/X11R6/man:/opt/wine/man:/usr/local/share/man
G_BROKEN_FILENAMES => 1
QTLIB => /usr/lib/qt-3.3/lib
HISTFILE => /home/mgogala/.sh_history
HOME => /home/mgogala
PERL5LIB => /usr/lib/perl5/site_perl/5.8.6/i386-linux-thread-multi:/usr/lib/perl5/site_perl/5.8.6
SSH_AUTH_SOCK => /tmp/ssh-SCmqHf2506/agent.2506

PHP Variables

Variable => Value
_SERVER["_"] => /usr/local/bin/php
_SERVER["KDEDIR"] => /usr
_SERVER["GNOME_KEYRING_SOCKET"] => /tmp/keyring-spCPNV/socket
_SERVER["LESSOPEN"] => |/usr/bin/lesspipe.sh %s
_SERVER["TNS_ADMIN"] => /oracle/product/10g/network/admin
_SERVER["QTDIR"] => /usr/lib/qt-3.3
_SERVER["LPDEST"] => printer
_SERVER["GDMSESSION"] => gnome
_SERVER["ENV"] => /home/mgogala/.kshrc
_SERVER["GDM_XSERVER_LOCATION"] => local
_SERVER["SHLVL"] => 0
_SERVER["GTK_RC_FILES"] => /etc/gtk/gtkrc:/home/mgogala/.gtkrc-1.2-gnome2
_SERVER["SHELL"] => /bin/ksh
_SERVER["USER"] => mgogala
_SERVER["EDITOR"] => vi
_SERVER["SSH_ASKPASS"] => /usr/libexec/openssh/gnome-ssh-askpass
_SERVER["DESKTOP_SESSION"] => gnome
_SERVER["SSH_AGENT_PID"] => 2534
_SERVER["QT_HOME"] => /usr/lib/qt-3.3
_SERVER["ORACLE_HOME"] => /oracle/product/10g
_SERVER["DISPLAY"] => :0.0
_SERVER["PAGER"] => less
_SERVER["SDL_DSP_NOSELECT"] => 1
_SERVER["SESSION_MANAGER"] => local/medo.noip.com:/tmp/.ICE-unix/2506
_SERVER["HISTSIZE"] => 200
_SERVER["EPC_DISABLED"] => true
_SERVER["LS_COLORS"] => no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:
_SERVER["PATH"] => /oracle/product/10g/bin:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:/usr/X11R6/bin:/usr/local/java/bin:/usr/lib/qt-3.3/bin:/home/mgogala/bin:.
_SERVER["GNOME_DESKTOP_SESSION_ID"] => Default
_SERVER["DBUS_SESSION_BUS_ADDRESS"] => unix:abstract=/tmp/dbus-9xLHZ6WXsl,guid=f8516e442cee404f09700295741a9a00
_SERVER["LOGNAME"] => mgogala
_SERVER["COLORTERM"] => gnome-terminal
_SERVER["LD_LIBRARY_PATH"] => /oracle/product/10g/lib
_SERVER["XAUTHORITY"] => /home/mgogala/.Xauthority
_SERVER["WINDOWID"] => 23068773
_SERVER["TERM"] => vt100
_SERVER["ORA_NLS10"] => /oracle/product/10g/nls/data
_SERVER["SQLPATH"] => /home/mgogala/sql
_SERVER["LANG"] => en_US
_SERVER["HOSTNAME"] => medo.noip.com
_SERVER["USERNAME"] => mgogala
_SERVER["QTINC"] => /usr/lib/qt-3.3/include
_SERVER["INPUTRC"] => /etc/inputrc
_SERVER["JAVA_HOME"] => /usr/local/java
_SERVER["MAIL"] => /var/spool/mail/mgogala
_SERVER["NLS_LANG"] => AMERICAN_AMERICA.WE8ISO8859P1
_SERVER["TWO_TASK"] => LOCAL
_SERVER["JRE"] => /usr/local/java/jre
_SERVER["PWD"] => /home/mgogala
_SERVER["LESS"] => -R -d
_SERVER["MANPATH"] => /usr/man:/usr/share/man:/usr/local/man:/usr/X11R6/man:/opt/wine/man:/usr/local/share/man
_SERVER["G_BROKEN_FILENAMES"] => 1
_SERVER["QTLIB"] => /usr/lib/qt-3.3/lib
_SERVER["HISTFILE"] => /home/mgogala/.sh_history
_SERVER["HOME"] => /home/mgogala
_SERVER["PERL5LIB"] => /usr/lib/perl5/site_perl/5.8.6/i386-linux-thread-multi:/usr/lib/perl5/site_perl/5.8.6
_SERVER["SSH_AUTH_SOCK"] => /tmp/ssh-SCmqHf2506/agent.2506
_SERVER["PHP_SELF"] => -
_SERVER["SCRIPT_NAME"] => -
_SERVER["SCRIPT_FILENAME"] => 
_SERVER["PATH_TRANSLATED"] => 
_SERVER["DOCUMENT_ROOT"] => 
_SERVER["REQUEST_TIME"] => 1148104674
_SERVER["argv"] => Array
(
    [0] => -
)

_SERVER["argc"] => 1

PHP License
This program is free software; you can redistribute it and/or modify
it under the terms of the PHP License as published by the PHP Group
and included in the distribution in the file:  LICENSE

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

If you did not receive a copy of the PHP license, or have any
questions about PHP licensing, please contact license@php.net.
 [2006-05-20 09:50 UTC] tony2001 at phpclub dot net
Please try OCI8 from CVS (or apply this patch:http://tony2001.phpclub.net/dev/tmp/oci8_lob.diff).
 [2006-05-21 10:00 UTC] vs at ez dot no
This patch fixes the problem for me. Thanks.
 [2006-05-21 23:46 UTC] gogala at sbcglobal dot net
This patch fixed the problem for me as well. Thanks!
 [2006-05-29 07:24 UTC] tony2001 at phpclub dot net
Fixed -> closed.
 [2006-06-01 16:56 UTC] marc dot stpierre at doj dot ca dot gov
I tried the latest CVS and I tried to install the patch, neither worked for me? Maybe I'm doing something wrong, been known to happen!

When I ran $ patch > oci8_lob.diff I got a message " I can't seem to find a patch in there anywhere."

I still can't see my BLOB field...
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 16:01:27 2024 UTC