コード例 #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();
 }