|
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 odbc_exec() function,
you can capture the returning result with a result set object
with the following syntax:
$result_set = odbc_exec($sql_statement);
#- The returning value could be a Boolean value FALSE,
#- if the execution failed.
Data rows and field values in the result set object can be
retrieved using other ODBC functions as shown in the tutorial PHP
script below:
<?php
$con = odbc_connect('FYI_SQL_SERVER','sa','FYIcenter');
$sql = 'SELECT GETDATE()';
$res = odbc_exec($con, $sql);
odbc_fetch_row($res);
$date = odbc_result($res,1);
print("Database current time: ". $date ."\n");
odbc_close($con);
?>
If you run this script, you will get something like this:
Database current time: 2007-06-02 22:07:05.110
(Continued on next topic...)
- What Are the Requirements to Use ODBC Connections in PHP Scripts?
- What Are Commonly Used ODBC Functions in PHP?
- How To Test ODBC DSN Connection Settings?
- How To Connect to a SQL Server using odbc_connect()?
- How To List All DSN Entries on Your Local Machine using odbc_data_source()?
- How To Execute a SQL Statement using odbc_exec()?
- How To Retrieve Error Messages using odbc_errormsg()?
- 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 odbc_fetch_row()?
- How To Retrieve Field Values using odbc_result()?
- How To List All Tables in the Database using odbc_tables()?
- How To List All Columns in a Table using odbc_columns()?
- How To Create Prepared Statements using odbc_prepare()?
|