/** * 关闭数据库连接 */ function close() { if ($this->conn) { mssql_close($this->conn); } parent::close(); }
function close() { if ($this->conn) { ocilogoff($this->conn); } parent::close(); }