/**
   * Removes all the connection relating to a database project, if the service manager has no active
   * clients connected to the project.
   *
   * @param String sDatabaseName, the name of the database to release all connection for.
   * @return boolean, true if the database was found, else false.
   */
  public boolean removeAllConnections(String sDatabaseName) {

    if (htDatabases.containsKey(sDatabaseName)) {
      DBConnectionManager conSet = (DBConnectionManager) htDatabases.get(sDatabaseName);
      conSet.removeAllConnections();
      htDatabases.remove(sDatabaseName);
      return true;
    } else return false;
  }