Example #1
0
 /**
  * Frees memory associated with the result.
  */
 public function free()
 {
     if ($this->_open === true) {
         $this->_result->free();
         $this->_open = false;
     }
 }
Example #2
0
 /**
  * Internal method to free the result resource
  *
  * @return null
  */
 public function free()
 {
     $this->result->free();
 }