MongoDB
Obteniendo información de la base de datos
Buscar..
Listar todas las bases de datos
show dbs
o
db.adminCommand('listDatabases')
o
db.getMongo().getDBNames()
Listar todas las colecciones en la base de datos
show collections
o
show tables
o
db.getCollectionNames()
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow