|
|
|
|
|
|
Category: Managing Mongo data files |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Adds one or more documents into a collection of MongoDB database. |
|
|
|
|
|
|
Deletes all the documents (corresponding to the specified filter) from a collection of a MongoDB database. |
|
|
|
|
|
|
Deletes a collection from a MongoDB database. |
|
|
|
|
|
|
Deletes a document from a collection in a MongoDB database. |
|
|
|
|
|
|
Runs a generic command on a MongoDB collection. |
|
|
|
|
|
|
Performs MongoDB write operations in bulk. This allows you to avoid network latency issues you would encounter if you performed the operations individually. |
|
|
|
|
|
|
Finds documents in a MongoDB collection. |
|
|
|
|
|
|
Modifies documents in a collection of a MongoDB database. |
|
|
|
|
|
|
Modifies a document in a collection of MongoDB database. |
|
|
|
|
|
|
Creates a collection in a MongoDB database while specifying the options of this collection. |
|
|
|
|
|
|
Deletes a MongoDB database as well as its collections. |
|
|
|
|
|
|
Runs a generic command on a MongoDB database. |
|
|
|
|
|
|
Returns information about a MongoDB database. |
|
|
|
|
|
|
Deletes a file identified by its name from a MongoDB file system. |
|
|
|
|
|
|
Deletes a file identified by its identifier from a MongoDB file system. |
|
|
|
|
|
|
Retrieves (on the local computer) a file identified by its name and found in a MongoDB file system. |
|
|
|
|
|
|
Retrieves (on the local computer) a file identified by its identifier and found in a MongoDB file system. |
|
|
|
|
|
|
Used to get information about a MongoDB file (gridFS). |
|
|
|
|
|
|
Retrieves the list of MongoDB files found in the MongoDB file system (gridFS). |
|
|
|
|
|
|
Copies a file from the local computer to a MongoDB file system (gridFS). |
|
|
|
|
|
|
Constants used by the Mongoxxx functions |
|
|
|
|
|
|
Adds one or more documents into a collection of MongoDB database. |
|
|
|
|
|
|
Used to retrieve documents that enter a multi-stage pipeline and are transformed into aggregated results. |
|
|
|
|
|
|
The mongoCollection type is used to define the advanced characteristics of a collection in a database of a MongoDB server. |
|
|
|
|
|
|
The mongoCollectionOption type is used to define the advanced characteristics of collection options in a MongoDB database. |
|
|
|
|
|
|
The mongoConnection type is used to define the advanced characteristics of a connection to a MongoDB server. |
|
|
|
|
|
|
Usage example of the MongoCreate function |
|
|
|
|
|
|
Creates a connection to a MongoDB server or cluster. |
|
|
|
|
|
|
Usage example of the MongoCreateCollection function |
|
|
|
|
|
|
Creates a collection in a MongoDB database while specifying the options of this collection. |
|
|
|
|
|
|
The mongoDatabase type is used to define the characteristics of a database for a MongoDB server. |
|
|
|
|
|
|
The mongoDatabaseInfo type is used to define the advanced characteristics of information about a MongoDB database. |
|
|
|
|
|
|
The following functions and types are used to handle the MongoDB data: |
|
|
|
|
|
|
The following functions and types are used to handle the MongoDB data: |
|
|
|
|
|
|
MongoDB is a document-oriented NoSQL database... |
|
|
|
|
|
|
Deletes all the documents (corresponding to the specified filter) from a collection of a MongoDB database. |
|
|
|
|
|
|
Deletes a collection from a MongoDB database. |
|
|
|
|
|
|
Deletes a MongoDB database as well as its collections. |
|
|
|
|
|
|
Deletes a document from a collection in a MongoDB database. |
|
|
|
|
|
|
Runs a generic command on a MongoDB database or on a MongoDB collection. |
|
|
|
|
|
|
Performs MongoDB write operations in bulk. This allows you to avoid network latency issues you would encounter if you performed the operations individually. |
|
|
|
|
|
|
Usage example of the MongoFind function |
|
|
|
|
|
|
Finds documents in a MongoDB collection. |
|
|
|
|
|
|
The mongoFindOption type is used to define the advanced characteristics of a search in a MongoDB database. |
|
|
|
|
|
|
The mongoGridFS type is used to define the advanced characteristics of a file system for a MongoDB database. |
|
|
|
|
|
|
Deletes a file identified by its name from a MongoDB file system. |
|
|
|
|
|
|
Deletes a file identified by its identifier from a MongoDB file system. |
|
|
|
|
|
|
The mongoGridFSFileInfo type is used to define the advanced characteristics of a file in a MongoDB database. |
|
|
|
|
|
|
Retrieves (on the local computer) a file identified by its name and found in a MongoDB file system. |
|
|
|
|
|
|
Retrieves (on the local computer) a file identified by its identifier and found in a MongoDB file system. |
|
|
|
|
|
|
Allows you to get information about a MongoDB file (gridFS). |
|
|
|
|
|
|
Retrieves the list of MongoDB files found in the MongoDB file system (gridFS). |
|
|
|
|
|
|
Copies a file from the local computer to a MongoDB file system (gridFS). |
|
|
|
|
|
|
Returns information about a MongoDB database. |
|
|
|
|
|
|
Modifies documents in a collection of a MongoDB database. |
|
|
|
|
|
|
Modifies a document in a collection of MongoDB database. |
|
|
|
|
|
|
The mongoOperation type is used to define the different operations to be performed in bulk. These operations are stored in an array of mongoOperation variables. |
|
|
|
|
|
|
The mongoOperationAdd type is used to define all the advanced characteristics of a document add operation in bulk. |
|
|
|
|
|
|
The mongoOperationDeleteAll type is used to define all the advanced characteristics of a document delete operation that will be added to a bulk operations list. All the documents that match the selection filter will be deleted. |
|
|
|
|
|
|
The mongoOperationDeleteOne type is used to define all the advanced characteristics of a document delete operation that will be added to a bulk operations list. The first document that matches the filter will be deleted. |
|
|
|
|
|
|
The mongoOperationReplaceOne type is used to define all the advanced characteristics of a document replace operation that will be added to a bulk operations list. The first document that matches the filter will be replaced. |
|
|
|
|
|
|
The mongoOperationsOption type is used to define the options of bulk operations. |
|
|
|
|
|
|
The mongoOperationUpdateAll type is used to define all the advanced characteristics of a document update operation that will be added to a bulk operations list. All the documents that match the selection filter will be updated. |
|
|
|
|
|
|
The mongoOperationUpdateOne type is used to define all the advanced characteristics of a document update operation that will be added to a bulk operations list. The first document that matches the selection filter will be updated. |
|
|
|
|
|
|
The mongoResult type is used to find out the result during a search performed in a MongoDB database. |
|
|
|
|
|
|
The mongoWriteConcern type is used to define the level of acknowledgment of receipt requested for the write operations in a stand-alone mongod, in a set of replicas or in fragmented clusters. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|