Mongo.getDB()
On this page
This version of the documentation is archived and no longer
supported. View the current documentation to learn how to
upgrade your version of MongoDB.
Description
Mongo.getDB(<database>)
Provides access to database objects from the
mongo
shell or from a JavaScript file.The
Mongo.getDB()
method has the following parameter:ParameterTypeDescriptiondatabase
stringThe name of the database to access.
Example
The following example instantiates a new connection to the MongoDB
instance running on the localhost interface and returns a reference
to "myDatabase"
:
db = new Mongo().getDB("myDatabase");