DB_common::disconnect() -- Disconnects from a database
Description
   Disconnects from a database
  
Return value
   boolean - Returns TRUE on success, FALSE on failure.
  
Note
This function can not be called
statically.
Example
Example 33-1. Using disconnect() <?php
require_once 'DB.php';
$db =& DB::connect('pgsql://someuser:apasswd@localhost/thedb');
if (PEAR::isError($db)) {
    die($db->getMessage());
}
$db->disconnect();
?> |  
  |