Collections:
PHP ODBC - Updating Existing Rows in a Table
PHP ODBC - How To Update Existing Rows in a Table?
✍: Guest
Updating existing rows in a table requires to run the UPDATE statement with a WHERE clause to identify the row. The following sample script updates one row with two new values:
<?php
$con = odbc_connect('FYI_SQL_SERVER','sa','FYIcenter');
$sql = "UPDATE fyi_links SET notes='Nice site.', counts=8"
. " WHERE id = 102";
$res = odbc_exec($con, $sql);
if (!$res) {
print("SQL statement failed with error:\n");
print(odbc_error($con).": ".odbc_errormsg($con)."\n");
} else {
$number_of_rows = odbc_num_rows($res);
print("$number_of_rows rows updated.\n");
}
odbc_close($con);
?>
If you run this script, you will get something like this:
1 rows updated.
⇒ PHP ODBC - Deleting Existing Rows in a Table
⇐ PHP ODBC - odbc_fetch_array() - Looping through Returning Rows
⇑ SQL Server FAQs - PHP ODBC Functions - Managing Tables and Data Rows
2024-05-29, 2146🔥, 0💬
Popular Posts:
How To Verify a User name with SQLCMD Tool in SQL Server? The quickest way to verify a user name in ...
How To Convert Character Strings into Numeric Values in SQL Server Transact-SQL? Sometimes you need ...
How To Use "IF ... ELSE IF ..." Statement Structures in SQL Server Transact-SQL? "IF ... ELSE IF ......
How to execute statements in loops in SQL Server Transact-SQL? How to use WHILE ... loops? You can u...
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...