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