How can I delete a database in Dbeaver? I set as default another db but still have an error.
Ok, it's not a bug. Just in your connection type another database. Now you can delete the previous default database.
I just had this problem with DBeaver 7.1.0.
Open your CLI terminal ;)
Type mysql -u root -p (or whatever your SQL server is, Postgres, etc)
-u root is for user root
-p is for password--it will let you type it in after you hit enter
Type USE databasename (where databasename is the name of your DB in DBeaver)
Type SHOW tables; (this will list all the tables in that DB)
Type DROP TABLE tablename; (where tablename is each table)
I searched for a while in DBeaver, but the easiest way is to simply use the MySQL command line interface and input a couple commands.