Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Receiving Returning Result from a Query
By: FYIcenter.com
(Continued from previous topic...)
How To Receive Returning Result from a Query?
When you execute a SQL SELECT statement with the mssql_query() function,
you can capture the returning result with a result set object
with the following syntax:
$result_set = mssql_query($sql_statement);
#- The returning value could be a Boolean value FALSE,
#- if the execution failed.
The result set object represents the result in rows and column.
The tutorial below shows you how to capture the result set:
<?php
$con = mssql_connect('LOCALHOST','sa','FYIcenter');
mssql_select_db('FyiCenterData', $con);
$sql = 'SELECT GETDATE()';
$res = mssql_query($sql, $con);
$date = mssql_result($res,0,0);
print("Database current time: ". $date ."\n");
mssql_close($con);
?>
If you run this script, you will get something like this:
Database current time: Jun 2 2007 4:37PM
(Continued on next topic...)
- How To Download and Install PHP on Windows?
- How To Check Your PHP Installation?
- What Do You Need to Connect PHP to SQL Server?
- How to Turn on the MSSQL API Module?
- What Is Wrong with SQL Server Client Libarary DLL, ntwdblib.dll?
- What Happens If ntwdblib.dll Is Missing on Your Machine?
- Where to Find ntwdblib.dll Version 2000.80.194.0?
- How To Connect with Different Port Numbers?
- What Are Commonly Used MSSQL Functions in PHP?
- How To Disconnect from a SQL Server using mssql_close()?
- How To Select an Exiting Database using mssql_select_db()?
- How To Execute a SQL Statement using mssql_query()?
- How To Retrieve Error Messages using mssql_get_last_message()?
- How To Turn Off Warning Messages during PHP Execution?
- How To Receive Returning Result from a Query?
- How To Loop through Result Set Objects using mssql_fetch_array()?
- How To Retrieve Field Values using mssql_result()?
- How To List All Field Names in the Result Set using mssql_field_name()?
|