<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.ibm-db2.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'function.db2-close.php',
    1 => 'db2_close',
    2 => 'Closes a database connection',
  ),
  'up' => 
  array (
    0 => 'ref.ibm-db2.php',
    1 => 'IBM DB2 Functions',
  ),
  'prev' => 
  array (
    0 => 'function.db2-client-info.php',
    1 => 'db2_client_info',
  ),
  'next' => 
  array (
    0 => 'function.db2-column-privileges.php',
    1 => 'db2_column_privileges',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/ibm_db2/functions/db2-close.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.db2-close" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">db2_close</h1>
  <p class="verinfo">(PECL ibm_db2 &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">db2_close</span> &mdash; <span class="dc-title">
   Closes a database connection
  </span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.db2-close-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>db2_close</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$connection</code></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>


  <p class="simpara">
   This function closes a DB2 client connection created with
   <span class="function"><a href="function.db2-connect.php" class="function">db2_connect()</a></span> and returns the corresponding
   resources to the database server.
  </p>
  <p class="simpara">
   If you attempt to close a persistent DB2 client connection created with
   <span class="function"><a href="function.db2-pconnect.php" class="function">db2_pconnect()</a></span>, the close request is ignored and the
   persistent DB2 client connection remains available for the next caller.
  </p>

 </div>

 <div class="refsect1 parameters" id="refsect1-function.db2-close-parameters">
  <h3 class="title">Parameters</h3>
  <dl>
   
    <dt><code class="parameter">connection</code></dt>
     <dd>
      <span class="simpara">
       Specifies an active DB2 client connection.
      </span>
     </dd>
    
  </dl>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.db2-close-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="simpara">
   Returns <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> on success or <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on failure.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.db2-close-examples">
  <h3 class="title">Examples</h3>
  <div class="example" id="example-1">
   <p><strong>Example #1 Closing a connection</strong></p>
   <div class="example-contents"><p>
    The following example demonstrates a successful attempt to close a
    connection to an IBM DB2, Cloudscape, or Apache Derby database.
   </p></div>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$conn </span><span style="color: #007700">= </span><span style="color: #0000BB">db2_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">'SAMPLE'</span><span style="color: #007700">, </span><span style="color: #DD0000">'db2inst1'</span><span style="color: #007700">, </span><span style="color: #DD0000">'ibmdb2'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$rc </span><span style="color: #007700">= </span><span style="color: #0000BB">db2_close</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">);<br />if (</span><span style="color: #0000BB">$rc</span><span style="color: #007700">) {<br />    echo </span><span style="color: #DD0000">"Connection was successfully closed."</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
   </div>

   <div class="example-contents"><p>The above example will output:</p></div>
   <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Connection was successfully closed.</pre>
</div>
   </div>
  </div>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.db2-close-seealso">
  <h3 class="title">See Also</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.db2-connect.php" class="function" rel="rdfs-seeAlso">db2_connect()</a> - Returns a connection to a database</span></li>
   <li><span class="function"><a href="function.db2-pclose.php" class="function" rel="rdfs-seeAlso">db2_pclose()</a> - Closes a persistent database connection</span></li>
   <li><span class="function"><a href="function.db2-pconnect.php" class="function" rel="rdfs-seeAlso">db2_pconnect()</a> - Returns a persistent connection to a database</span></li>
  </ul>
 </div>


</div><?php manual_footer($setup); ?>