function __destruct()
 {
     parent::__destruct();
     // If we are in pipeline mode, then we *don't* close the ODBC connection.
     // If we are *not* then we have to close the connection.
     if (isset($this->db) && !$this->isInPipelineMode) {
         @$this->db->close();
     }
 }
Example #2
0
 function __destruct()
 {
     parent::__destruct();
 }