MS SQL Server Concepts and Programming Question:
Download Questions PDF

PHP MSSQL - How To Loop through Returning Rows?

MS SQL Server Interview Question
MS SQL Server Interview Question

Answers:

Answer #1
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','GlobalGuideLine');
mssql_select_db('GlobalGuideLineDatabase', $con);

$sql = "SELECT id, url, time FROM ggl_links";
$res = mssql_query($sql,$con);
while ($row = mssql_fetch_array($res)) {
print($row['id'].",".$row['url'].",".$row['time']." ");
}
mssql_free_result($res);

mssql_close($con);
?>


Answer #2
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 ggl_links table are printed on the screen:

101,www.GlobalGuideLine.com,
102,www.GlobalGuideLine.com/sql,
1101,www.retneciyf.com/html,
1102,www.retneciyf.com/seo,
2101,www.GlobalGuideLine.com/xml,
2102,www.GlobalGuideLine.com/xslt,

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.

Download MS SQL Server Interview Questions And Answers PDF

Previous QuestionNext Question
PHP MSSQL - What Is a Result Set Object Returned by mssql_query()?PHP MSSQL - How To Update Existing Rows in a Table?