diff options
author | Antony Dovgal <tony2001@php.net> | 2006-10-12 10:04:12 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-10-12 10:04:12 +0000 |
commit | d087c87ffe9fbab6060c1d28cab0a6bf00752c7c (patch) | |
tree | 7d112b1d63f1ffd534629b2fc0390b13a129b3cd | |
parent | e6fd66facbe1766e8ad53e7826471796ea7eb6dd (diff) | |
download | php-git-d087c87ffe9fbab6060c1d28cab0a6bf00752c7c.tar.gz |
MFH: use connection charset when reading LOB data
-rw-r--r-- | ext/oci8/oci8_statement.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/oci8/oci8_statement.c b/ext/oci8/oci8_statement.c index 75a2cf3066..68fdd95a1b 100644 --- a/ext/oci8/oci8_statement.c +++ b/ext/oci8/oci8_statement.c @@ -548,7 +548,7 @@ int php_oci_statement_execute(php_oci_statement *statement, ub4 mode TSRMLS_DC) outcol->descid = descr->id; buf = &(descr->descriptor); descr->charset_form = outcol->charset_form; - descr->charset_id = outcol->charset_id; + /* descr->charset_id = outcol->charset_id; */ break; case SQLT_LNG: |