MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Liste aller Sammlungen in der Mongo-Datenbank in Java

Abrufen einer Liste von SammlungenJede Datenbank hat null oder mehr Sammlungen. Sie können eine Liste davon aus der Datenbank abrufen (und alle dort vorhandenen ausdrucken):

Set<String> colls = db.getCollectionNames();

for (String s : colls) {
System.out.println(s);
}

Bearbeiten :Wie in der Antwort von @Andrew vorgeschlagen, verwendet der aktualisierte Java-Client Folgendes:

/**
 * Gets the names of all the collections in this database.
 *
 * @return an iterable containing all the names of all the collections in this database
 */
MongoIterable<String> listCollectionNames();

und Abrufen der iterierbaren Sammlung basierend auf dem Dokumenttyp :

/**
 * Finds all the collections in this database.
 *
 * @param resultClass the class to decode each document into
 * @param <TResult>   the target document type of the iterable.
 * @return the list collections iterable interface
 * @mongodb.driver.manual reference/command/listCollections listCollections
 */
<TResult> ListCollectionsIterable<TResult> listCollections(Class<TResult> resultClass);