选择语言 :

 Driver_Database_Driver_Postgre_Result::__destruct

Result destruction cleans up all open result sets.

void Driver_Database_Driver_Postgre_Result::__destruct( )
返回值
  • void
File: ./drivers/database/postgre/result.class.php
public function __destruct()
{
    if (is_resource($this->_result))
    {
        pg_free_result($this->_result);
    }
}