A CreateDatabaseMessage is used to request the creation of a new database with the given name.
A DBAlreadyExistInfo is used as response to a create database request, if the database requested for creation already exists
A DBDoesNotExistInfo is used as response to a database request which asks for a database that does not exist.
Trait that every message which belongs to database operations has to extend.
A DeleteDatabaseMessage is used to request the deletion of the database with the given name.
A ListDBInfo is used as response to a list database request.
A ListDatabaseMessage is used to request the list of databases present on the server.
A NoDBInfo is used as response to a list database request if no databases are present on the server.
A NoDBSelectedInfo is used as response to a request on a map or on a row when no database has previously been selected.
A SelectDatabaseMessage is used to request the select of the database with the given name.
DatabaseMessages are used to manage operations on databases.