示例#1
0
文件: PDO.php 项目: Ragg-/CodeLapse
 /**
  * ResultSetオブジェクトを解放します。
  */
 public function free()
 {
     $this->_result !== null and $this->_result->closeCursor();
     $this->_result = null;
     parent::free();
 }
示例#2
0
文件: MySQL.php 项目: Ragg-/CodeLapse
 /**
  * ResultSetオブジェクトを解放します。
  */
 public function free()
 {
     $this->_result !== null and mysql_free_result($this->_result);
     $this->_result = null;
     parent::free();
 }