public void deleteDb( @Nonnull String dbName ) {
Server currentServer = server;
if ( currentServer == null ) {
throw new IllegalArgumentException( "Invalid state - server is null" );
}
currentServer.deleteDatabase( dbName );
}
/**
* Creates a new database object - but does *not* create anything on the server
*