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, 2045🔥, 0💬
Popular Posts:
Where to find Oracle database server tutorials? Here is a collection of tutorials, tips and FAQs for...
How To Generate CREATE VIEW Script on an Existing View in SQL Server? If you want to know how an exi...
What Happens to Your Transactions When ERROR 1213 Occurred in MySQL? If your transaction receives th...
How to put statements into a statement block in SQL Server Transact-SQL? You can put statements into...
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...