From: Edin Kadribasic Date: Sat, 5 Feb 2005 22:46:26 +0000 (+0000) Subject: Return lobs as strings for now X-Git-Tag: RELEASE_0_2~74 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=64e8c3105cb1da936cabf92e66e89ef3248fbf34;p=php Return lobs as strings for now --- diff --git a/ext/pdo/pdo_stmt.c b/ext/pdo/pdo_stmt.c index 4aec036fb9..fa9cdab593 100755 --- a/ext/pdo/pdo_stmt.c +++ b/ext/pdo/pdo_stmt.c @@ -394,6 +394,7 @@ static inline void fetch_value(pdo_stmt_t *stmt, zval *dest, int colno TSRMLS_DC ZVAL_NULL(dest); break; + case PDO_PARAM_LOB: case PDO_PARAM_STR: if (value && !(value_len == 0 && stmt->dbh->oracle_nulls)) { ZVAL_STRINGL(dest, value, value_len, 1);