-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathMongo.getDB.txt
62 lines (38 loc) · 1.16 KB
/
Mongo.getDB.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
=============
Mongo.getDB()
=============
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
Description
-----------
.. method:: Mongo.getDB(<database>)
Provides access to database objects from
:binary:`~bin.mongosh` or from a JavaScript file.
The :method:`Mongo.getDB()` method has the following parameter:
.. list-table::
:header-rows: 1
:widths: 20 20 80
* - Parameter
- Type
- Description
* - ``database``
- string
- The name of the database to access.
Compatibility
-------------
This method is available in deployments hosted in the following environments:
.. include:: /includes/fact-environments-atlas-only.rst
.. include:: /includes/fact-environments-onprem-only.rst
Example
-------
The following example instantiates a new connection to the MongoDB
instance running on the localhost interface and returns a reference
to ``"myDatabase"``:
.. code-block:: javascript
db = new Mongo().getDB("myDatabase");
.. seealso::
:method:`Mongo()` and :doc:`/reference/method/connect`