|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-09-28 15:45 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2020-09-28 15:45 UTC] cmb@php.net
[2020-10-11 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 10:00:01 2025 UTC |
Description: ------------ We are running into a segfault when trying to use PDO ODBC. PHP version info: PHP 5.6.16 (cli) (built: Dec 2 2015 10:11:22) Copyright (c) 1997-2015 The PHP Group Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies with the ionCube PHP Loader (enabled) + Intrusion Protection from ioncube24.com (unconfigured) v5.0.18, Copyright (c) 2002-2015, by ionCube Ltd. with Zend OPcache v7.0.4-dev, Copyright (c) 1999-2015, by Zend Technologies with Zend Guard Loader v3.3, Copyright (c) 1998-2014, by Zend Technologies php test.php Segmentation fault BT Provided below. Test script: --------------- $dsn = 'odbc:driver=SQLServer;database=***;server=***.***.***.***;port=1433'; $user = '*****'; $password = '****'; try { $dbh = new \PDO($dsn, $user, $password); $dbh->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); } catch (\PDOException $e) { echo 'Connection Failed' . $e->getMessage(); } // Connection , no exceptions $sql = "SELECT * FROM mytable"; $dsn->query($sql); Expected result: ---------------- GDB: Program received signal SIGSEGV, Segmentation fault. 0x00002aaab260b02b in ?? () from /opt/alt/php56/usr/lib64/php/modules/pdo.so (gdb) bt #0 0x00002aaab260b02b in ?? () from /opt/alt/php56/usr/lib64/php/modules/pdo.so #1 0x00000000006867aa in ?? () #2 0x00000000006bdcd8 in execute_ex () #3 0x00002aaaac1eaf6c in zend_oe () from /opt/alt/php56/usr/lib64/php/modules/ZendGuardLoader.so #4 0x000000000064fc6a in zend_execute_scripts () #5 0x00000000005f130b in php_execute_script () #6 0x00000000006f36bd in ?? () #7 0x00000000006f4058 in ?? () #8 0x0000003ed141d9f4 in __libc_start_main () from /lib64/libc.so.6 #9 0x00000000004264b9 in _start () Actual result: -------------- GDB: Program received signal SIGSEGV, Segmentation fault. 0x00002aaab260b02b in ?? () from /opt/alt/php56/usr/lib64/php/modules/pdo.so (gdb) bt #0 0x00002aaab260b02b in ?? () from /opt/alt/php56/usr/lib64/php/modules/pdo.so #1 0x00000000006867aa in ?? () #2 0x00000000006bdcd8 in execute_ex () #3 0x00002aaaac1eaf6c in zend_oe () from /opt/alt/php56/usr/lib64/php/modules/ZendGuardLoader.so #4 0x000000000064fc6a in zend_execute_scripts () #5 0x00000000005f130b in php_execute_script () #6 0x00000000006f36bd in ?? () #7 0x00000000006f4058 in ?? () #8 0x0000003ed141d9f4 in __libc_start_main () from /lib64/libc.so.6 #9 0x00000000004264b9 in _start ()