Source of: /manual/en/function.odbc-free-result.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.uodbc.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'function.odbc-free-result.php',
1 => 'odbc_free_result',
),
'up' =>
array (
0 => 'ref.uodbc.php',
1 => 'ODBC Functions',
),
'prev' =>
array (
0 => 'function.odbc-foreignkeys.php',
1 => 'odbc_foreignkeys',
),
'next' =>
array (
0 => 'function.odbc-gettypeinfo.php',
1 => 'odbc_gettypeinfo',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="function.odbc-free-result" class="refentry">
<div class="refnamediv">
<h1 class="refname">odbc_free_result</h1>
<p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">odbc_free_result</span> — <span class="dc-title">Free resources associated with a result</span></p>
</div>
<a name="function.odbc-free-result.description"></a><div class="refsect1 description">
<h3 class="title">Description</h3>
<div class="methodsynopsis dc-description">
<span class="type">bool</span> <span class="methodname"><b>odbc_free_result</b></span>
( <span class="methodparam"><span class="type">resource</span> <tt class="parameter">$result_id</tt></span>
)</div>
<p class="para rdfs-comment">
Free resources associated with a result.
</p>
<p class="para">
<b>odbc_free_result()</b> only needs to be called if you are
worried about using too much memory while your script is running.
All result memory will automatically be freed when the script is finished.
</p>
</div>
<a name="function.odbc-free-result.parameters"></a><div class="refsect1 parameters">
<h3 class="title">Parameters</h3>
<p class="para">
</p><dl>
<dt class="varlistentry">
<span class="term"><i><tt class="parameter">result_id</tt></i>
</span>
</dt><dd class="listitem">
<p class="para">
The result identifier.
</p>
</dd>
</dl>
<p>
</p>
</div>
<a name="function.odbc-free-result.returnvalues"></a><div class="refsect1 returnvalues">
<h3 class="title">Return Values</h3>
<p class="para">
Always returns <b><tt class="constant">TRUE</tt></b>.
</p>
</div>
<a name="function.odbc-free-result.notes"></a><div class="refsect1 notes">
<h3 class="title">Notes</h3>
<blockquote><p><b class="note">Note</b>:
If auto-commit is disabled (see <a href="function.odbc-autocommit.php" class="function">odbc_autocommit()</a>) and
you call <b>odbc_free_result()</b> before committing, all
pending transactions are rolled back.
<br />
</p></blockquote>
</div>
</div><?php manual_footer(); ?>