|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-03-16 17:00 UTC] jhurshman at rocketmail dot com
<?php
$db = mssql_connect("host", "user", "password");
$query = 'UPDATE table_name SET field_name = "text"';
$result = mssql_query($query);
echo ($result) ? "yes" : "no";
?>
The output is "no", even though the update has actually occurred. This did not happen with 4.0.3pl1. It began happening when I upgraded to 4.0.4pl1.
I used the "(CGI binary plus server API versions for Apache, AOLserver, ISAPI and NSAPI. MySQL support built-in, many extensions included, packaged as zip)" Win32 binary.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 04:00:01 2025 UTC |
Select statement do return true if they succeed. The output of this script is "yesno": <?php $db = mssql_connect("host", "user", "password"); $query = 'SELECT * FROM table_name'; $result = mssql_query($query); echo ($result) ? "yes" : "no"; $query = 'UPDATE table_name SET field_name = "text"'; $result = mssql_query($query); echo ($result) ? "yes" : "no"; ?>