Delete db functionality
See original GitHub issueAt the moment it is not possible, using pyArango, to actually drop an ArangoDB database. Is there a specific reason for this?
I have written a script to successfully clean a database (drop all graphs and collections) using pyArango functionalities, but it doesn’t really solve the issue.
By the way I could draft a pull request to integrate this last functionality into the database class (a drop_all_collections
method?)
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
SQL - DROP or DELETE Database - Tutorialspoint
The SQL DROP DATABASE statement is used to drop an existing database in SQL schema. Syntax. The basic syntax of DROP DATABASE statement...
Read more >SQL DROP DATABASE Statement - W3Schools
The DROP DATABASE statement is used to drop an existing SQL database. ... Deleting a database will result in loss of complete information...
Read more >SQL Server DROP DATABASE Explained By Practical Examples
In this tutorial, you will learn how to delete a database in a SQL Server instance using the DROP DATABASE statement and SQL...
Read more >Deleting a DB instance - Amazon Relational Database Service
Deleting a DB instance · In the navigation pane, choose Databases, and then choose the DB instance that you want to delete. ·...
Read more >IMS V13 - DELETE DB command - IBM
To delete a HALDB master database, a /DBRECOVERY command must be issued. The /DBRECOVERY command removes this IMS subsystem's knowledge of the HALDB...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @tariqdaouda, I just sent a pull request to add a
dropAllCollections
method to the database class. #86 I’ll try to work on the deleteDatabase method during the week.Bests
I was reading the code, for now in order to delete the database I did:
And it worked for me