lithium\data\source\Database::disconnect()

public method

Disconnects the adapter from the database.

Returns

boolean

Returns true on success, else false.

Source

	public function disconnect() {
		if ($this->_isConnected) {
			unset($this->connection);
			$this->_isConnected = false;
		}
		return true;
	}