Collections:
PHP MSSQL - mssql_fetch_array() - Looping through Returning Rows
PHP MSSQL - How To Loop through Returning Rows?
✍: Guest
The best way to query tables and loop through returning rows is to run a SELECT statement with the mssql_query() function, catch the returning object as a result set, and loop through the result with mssql_fetch_array() function in a while loop as shown in the following sample PHP script:
<?php $con = mssql_connect('LOCALHOST','sa','FYIcenter'); mssql_select_db('FyiCenterData', $con); $sql = "SELECT id, url, time FROM fyi_links"; $res = mssql_query($sql,$con); while ($row = mssql_fetch_array($res)) { print($row['id'].",".$row['url'].",".$row['time']."\n"); } mssql_free_result($res); mssql_close($con); ?>
Using mssql_fetch_array() is better than other fetch functions, because it allows you to access field values by field names or field positions. If you run this script, you will see all rows from the fyi_links table are printed on the screen:
101,dev.fyicenter.com, 102,dba.fyicenter.com, 1101,moc.retneciyf.ved, 1102,moc.retneciyf.abd, 2101,dev.fyicenter.com, 2102,dba.fyicenter.com,
Don't forget to call mssql_free_result($res). It is important to free up result set objects as soon as you are done with them.
⇒ PHP MSSQL - Updating Existing Rows in a Table
⇐ PHP MSSQL - Returning Result Set Objects
⇑ SQL Server FAQs - PHP MSSQL Functions - Managing Tables and Data Rows
2024-02-28, 1531🔥, 0💬
Popular Posts:
Where to find SQL Server database server tutorials? Here is a collection of tutorials, tips and FAQs...
How To Use "IF ... ELSE IF ..." Statement Structures in SQL Server Transact-SQL? "IF ... ELSE IF ......
How to download and install Microsoft SQL Server Management Studio Express in SQL Server? Microsoft ...
Where to find answers to frequently asked questions on CREATE, ALTER and DROP Statements in MySQL? H...
How To Set Up SQL*Plus Output Format in Oracle? If you want to practice SQL statements with SQL*Plus...