|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-10-13 13:26 UTC] adambaratz@php.net
-Status: Open
+Status: Feedback
[2016-10-13 13:26 UTC] adambaratz@php.net
[2016-10-13 15:32 UTC] Andrey dot Inihov at yandex dot ru
[2016-10-13 15:55 UTC] adambaratz@php.net
-Status: Feedback
+Status: Not a bug
[2016-10-13 15:55 UTC] adambaratz@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 20:00:02 2025 UTC |
Description: ------------ The test script (as well as any sql query intended to retrieve uniqueidentifier from database) keeps returning binary data instead of its' stringified value. PHP Version: 7.0.11 from webtatic Apache: 2.4.6 Test script: --------------- $dbh = new \PDO ("dblib:host=192.168.1.3;dbname=a3ssmDEV", "web_interface", "X9QARIhY"); $stmt = $dbh->prepare("select UserID from a3.dat_dat_User where Login = 'example'"); $stmt->execute(); while ($row = $stmt->fetch()) { print_r($row); } die;