DROP DATABASE
Drops a database
Syntax
DROP DATABASE <dbName> [if exists]
<dbName>
Examples
drop an existing db:
orientdb> DROP DATABASE foo
DROP DATABASE foo
drop a db if it exists:
orientdb> DROP DATABASE foo if exists
DROP DATABASE foo if exists