ID:               45849
 Updated by:       [EMAIL PROTECTED]
 Reported By:      dk at trick dot ca
-Status:           Open
+Status:           Feedback
 Bug Type:         PDO related
 Operating System: Linux
 PHP Version:      5.2.6
 New Comment:

Thank you for this bug report. To properly diagnose the problem, we
need a backtrace to see what is happening behind the scenes. To
find out how to generate a backtrace, please read
http://bugs.php.net/bugs-generating-backtrace.php for *NIX and
http://bugs.php.net/bugs-generating-backtrace-win32.php for Win32

Once you have generated a backtrace, please submit it to this bug
report and change the status back to "Open". Thank you for helping
us make PHP better.




Previous Comments:
------------------------------------------------------------------------

[2008-08-18 12:20:21] dk at trick dot ca

Possibly related to 41399?

http://bugs.php.net/bug.php?id=41888

------------------------------------------------------------------------

[2008-08-18 11:28:21] dk at trick dot ca

further investigation shows this error occurs when a field of type
"text" or "varchar(max)" is included in the query.

------------------------------------------------------------------------

[2008-08-18 10:08:22] dk at trick dot ca

typo, first line of testpdo.pgp does have a missing quote:

$d = new PDO('odbc:MYDSN','MYDUSERID', 'MYPASSWORD');

------------------------------------------------------------------------

[2008-08-18 10:06:39] dk at trick dot ca

Description:
------------
PHP Segfaults when I query MS SQL Server 2005 via an ODBC DSN with
PDO.
The query returns fine using tsql, and there is nothing wrong in the
freetds log.



Reproduce code:
---------------
(names/credentials changed)

testpdo.php:

<?php
$d = new PDO('odbc:MYDSN','MYDUSERID', 'MYPASSWORD);
foreach ($d->query('SELECT * from MYTABLE') as $row) {
      print_r($row);
}


odbc.ini:

[MYDSN]
Driver = /usr/lib/libtdsodbc.so.0
Description = MYDSN
Trace = Yes
Servername = MYSERVER
Database = MYDATABASE

freetds.conf:

[MYSERVER]
host = MYHOST
port = 1433
tds version = 8.0




Expected result:
----------------
print results or some sort of error.

Actual result:
--------------
# php testpdo.php
Segmentation fault



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=45849&edit=1

Reply via email to