|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2014-12-29 01:04 UTC] kalle@php.net
-Status: Assigned
+Status: Open
-Assigned To: fmk
+Assigned To:
[2016-10-15 23:11 UTC] kalle@php.net
-Status: Open
+Status: Wont fix
[2016-10-15 23:11 UTC] kalle@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 22:00:01 2025 UTC |
Description: ------------ mssql_fetch_* returns 0 instead of NULL when the datatype is "bit". Reproduce code: --------------- <?php $conn = mssql_connect($src, $uid, $pwd); mssql_select_db($db_name); $sql = "SELECT Cast (Null as Bit) As Should_Be_Null," . " Cast (0 as Bit) AS Should_Be_Int_0," . " Cast (1 as Bit) As Should_Be_Int_1"; $result = mssql_query($sql); return mssql_fetch_array($result); ?> Expected result: ---------------- Should return (NULL, 0, 1) Actual result: -------------- returns (0, 0, 1)