|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-01-18 16:22 UTC] mhoppstaedter at gmx dot de
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 01:00:01 2025 UTC |
Description: ------------ mssql_query() reports false result. This only seems to happen by an update (insert?) statement; select statement seems to work correctly. It was reported that this bug was fixed in CVS, but I downloaded Win32 Stable (5.0.x-dev) from 18, 2005 09:30 GMT and this DOES NOT fix it. Reproduce code: --------------- $sql = "UPDATE table SET field = 'text' WHERE id = '$id'"; mssql_query($sql) or die("Error MS-SQL: ".$sql); Expected result: ---------------- No error message. Actual result: -------------- Error MS-SQL: UPDATE table SET field = 'text' WHERE id = 'id'