PHP - Function Free Result
Syntax
bool odbc_free_result ( resource $result_id )
Definition and Usage
It contains the information about free result that associated with a result
Return Values
It returns always true
Parameters
| Sr.No | Parameters & Description |
|---|---|
| 1 |
result_id It contains the information about the result identifier |
Examples
Try out following example
<?php
$input_ID = odbc_connect("DSN","user_id","pass_id");
$result = odbc_exec($input_ID,"SELECT * FROM Products ORDER BY ProductName");
odbc_free_result($result);
?>
php_function_reference.htm
Advertisements