dbDrop method

DbDrop dbDrop(
  1. String dbName
)

Drop a database. The database, all its tables, and corresponding data will be deleted. If successful, the operation returns the object {dropped: 1}. If the specified database doesn't exist a RqlRuntimeError is thrown.

Implementation

DbDrop dbDrop(String dbName) => DbDrop(dbName, {});