php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #57289 Long ntext fields cause empty result fields
Submitted: 2006-10-10 15:05 UTC Modified: 2006-10-10 22:17 UTC
From: mike at pixor dot net Assigned: wez (profile)
Status: Closed Package: PDO_ODBC (PECL)
PHP Version: 5.1.6 OS: Windows XP SP2
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: mike at pixor dot net
New email:
PHP Version: OS:

 

 [2006-10-10 15:05 UTC] mike at pixor dot net
Description:
------------
I'm working with a SQL Server 2005 Express database, trying to access data that has multiple ntext fields containing product descriptions in various languages.  I am able to access this data using odbc_connect() and odbc_exec(), but came across this bug when using PDO methods.  If I SELECT a field with type ntext, any fields I SELECT after this will be empty.  For example, using this SELECT statement where name is varchar(255) and description is ntext, I would have both name and description in my result:

SELECT name, description FROM test_tbl

however, this statement would return description but name would be empty:

SELECT description, name FROM test_tbl

I've attached a URL to some example code that will reproduce this bug, at least on my system using SQL Server 2005 Express.

Reproduce code:
---------------
http://pixor.net/temp/pdo_odbc_ntext.phps


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-10-10 22:17 UTC] wez@php.net
This bug has been fixed in CVS.

In case this was a documentation problem, the fix will show up at the
end of next Sunday (CET) on pecl.php.net.

In case this was a pecl.php.net website problem, the change will show
up on the website in short time.
 
Thank you for the report, and for helping us make PECL better.

Fix will be in PHP 5.2, and should show up in the next stable snapshot.
Thanks for the self-contained test case.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 12:01:28 2024 UTC