|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-01-07 12:48 UTC] sniper@php.net
[2005-01-07 16:30 UTC] klaus dot kuehne at gga-hannover dot de
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 17 05:00:01 2025 UTC |
Description: ------------ Hello, after upgrading 4.3.6 to 4.3.10, many of out scripts failed. The reason: On executing INSERT/DELETE/UPDATE-operations, mssql_query() returns FALSE, even if the statement was o.k. and executed correctly. Example: ... $sql = "delete from TAB where [KEY] = 117"; $ret = mssql_query($sql, $con); if (!$ret) die("Operation Failed"); ... However, the DELETE operation was successful: record 117 was removed from the table. After returning to PHP 4.3.6, all scripts are running correctly. Regards, Klaus K?hne, GGA Institute, Hannover, Germany