Example #1
0
 /**
  * ResultSetオブジェクトを解放します。
  */
 public function free()
 {
     $this->_result !== null and $this->_result->closeCursor();
     $this->_result = null;
     parent::free();
 }
Example #2
0
 /**
  * ResultSetオブジェクトを解放します。
  */
 public function free()
 {
     $this->_result !== null and mysql_free_result($this->_result);
     $this->_result = null;
     parent::free();
 }