CouchDB Delete Database
CouchDB Delete Database using Fauxton
Open the Fauxton url:http://127.0.0.1:5984/_utils/
Click on the “Databases” tab and you will see all databases:
Here, we are going to delete “tutoraspire” database. Click on the delete icon encircled in red.
It will show a pop-up message asking to confirm the database name. Write down the name of the database.
Now the database is deleted.
CouchDB Delete Database Using cURL utility
CouchDB facilitates you to delete a database by sending an HTTP request to the server using DELETE method through cURL utility.
Syntax:
Note: -X is used to specify a custom request method of HTTP while communicating with the HTTP server. To delete a database, send the url to the server by specifying the database.
Example:
Let’s delete the database named “my_database”.
Use the following command:
Verification
You can verify that your database is deleted by using the following command:
Here we can see that my_database is no more in list and it is deleted permanently.
Next TopicCouchDB Create Document