ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Version: 2025

Category: Managing Mongo data files
66 results
<mongoCollection variable>.Add (Function)
Adds one or more documents into a collection of MongoDB database.
<mongoCollection variable>.DeleteAll (Function)
Deletes all the documents (corresponding to the specified filter) from a collection of a MongoDB database.
<mongoCollection variable>.DeleteCollection (Function)
Deletes a collection from a MongoDB database.
<mongoCollection variable>.DeleteOne (Function)
Deletes a document from a collection in a MongoDB database.
<mongoCollection variable>.ExecuteCommand (Function)
Runs a generic command on a MongoDB collection.
<mongoCollection variable>.ExecuteOperations (Function)
Performs MongoDB write operations in bulk. This allows you to avoid network latency issues you would encounter if you performed the operations individually.
<mongoCollection variable>.Find (Function)
Finds documents in a MongoDB collection.
<mongoCollection variable>.ModifyAll (Function)
Modifies documents in a collection of a MongoDB database.
<mongoCollection variable>.ModifyOne (Function)
Modifies a document in a collection of MongoDB database.
<mongoDatabase variable>.CreateCollection (Function)
Creates a collection in a MongoDB database while specifying the options of this collection.
<mongoDatabase variable>.DeteleDatabase (Function)
Deletes a MongoDB database as well as its collections.
<mongoDatabase variable>.ExecuteCommand (Function)
Runs a generic command on a MongoDB database.
<mongoDatabase variable>.Info (Function)
Returns information about a MongoDB database.
<mongoGridFS variable>.DeleteFile (Function)
Deletes a file identified by its name from a MongoDB file system.
<mongoGridFS variable>.DeleteFileByID (Function)
Deletes a file identified by its identifier from a MongoDB file system.
<mongoGridFS variable>.GetFile (Function)
Retrieves (on the local computer) a file identified by its name and found in a MongoDB file system.
<mongoGridFS variable>.GetFileByID (Function)
Retrieves (on the local computer) a file identified by its identifier and found in a MongoDB file system.
<mongoGridFS variable>.GetFileInfo (Function)
Used to get information about a MongoDB file (gridFS).
<mongoGridFS variable>.ListFile (Function)
Retrieves the list of MongoDB files found in the MongoDB file system (gridFS).
<mongoGridFS variable>.SendFile (Function)
Copies a file from the local computer to a MongoDB file system (gridFS).
Constants for managing MongoDB databases
Constants used by the Mongoxxx functions
MongoAdd (Function)
Adds one or more documents into a collection of MongoDB database.
MongoAggregationPipeline (Function)
Used to retrieve documents that enter a multi-stage pipeline and are transformed into aggregated results.
mongoCollection (Variable type)
The mongoCollection type is used to define the advanced characteristics of a collection in a database of a MongoDB server.
mongoCollectionOption (Variable type)
The mongoCollectionOption type is used to define the advanced characteristics of collection options in a MongoDB database.
mongoConnection (Variable type)
The mongoConnection type is used to define the advanced characteristics of a connection to a MongoDB server.
MongoCreate (Example)
Usage example of the MongoCreate function
MongoCreate (Function)
Creates a connection to a MongoDB server or cluster.
MongoCreateCollection (Example)
Usage example of the MongoCreateCollection function
MongoCreateCollection (Function)
Creates a collection in a MongoDB database while specifying the options of this collection.
mongoDatabase (Variable type)
The mongoDatabase type is used to define the characteristics of a database for a MongoDB server.
mongoDatabaseInfo (Variable type)
The mongoDatabaseInfo type is used to define the advanced characteristics of information about a MongoDB database.
MongoDB functions
The following functions and types are used to handle the MongoDB data:
MongoDB functions (prefix syntax)
The following functions and types are used to handle the MongoDB data:
MongoDB/GRIDFS databases
MongoDB is a document-oriented NoSQL database...
MongoDeleteAll (Function)
Deletes all the documents (corresponding to the specified filter) from a collection of a MongoDB database.
MongoDeleteCollection (Function)
Deletes a collection from a MongoDB database.
MongoDeleteDatabase (Function)
Deletes a MongoDB database as well as its collections.
MongoDeleteOne (Function)
Deletes a document from a collection in a MongoDB database.
MongoExecuteCommand (Function)
Runs a generic command on a MongoDB database or on a MongoDB collection.
MongoExecuteOperations (Function)
Performs MongoDB write operations in bulk. This allows you to avoid network latency issues you would encounter if you performed the operations individually.
MongoFind (Example)
Usage example of the MongoFind function
MongoFind (Function)
Finds documents in a MongoDB collection.
mongoFindOption (Variable type)
The mongoFindOption type is used to define the advanced characteristics of a search in a MongoDB database.
mongoGridFS (Variable type)
The mongoGridFS type is used to define the advanced characteristics of a file system for a MongoDB database.
MongoGridFSDeleteFile (Function)
Deletes a file identified by its name from a MongoDB file system.
MongoGridFSDeleteFileByID (Function)
Deletes a file identified by its identifier from a MongoDB file system.
mongoGridFSFileInfo (Variable type)
The mongoGridFSFileInfo type is used to define the advanced characteristics of a file in a MongoDB database.
MongoGridFSGetFile (Function)
Retrieves (on the local computer) a file identified by its name and found in a MongoDB file system.
MongoGridFSGetFileByID (Function)
Retrieves (on the local computer) a file identified by its identifier and found in a MongoDB file system.
MongoGridFSGetFileInfo (Function)
Allows you to get information about a MongoDB file (gridFS).
MongoGridFSListFile (Function)
Retrieves the list of MongoDB files found in the MongoDB file system (gridFS).
MongoGridFSSendFile (Function)
Copies a file from the local computer to a MongoDB file system (gridFS).
MongoInfo (Function)
Returns information about a MongoDB database.
MongoModifyAll (Function)
Modifies documents in a collection of a MongoDB database.
MongoModifyOne (Function)
Modifies a document in a collection of MongoDB database.
mongoOperation (Variable type)
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.
mongoOperationAdd (Variable type)
The mongoOperationAdd type is used to define all the advanced characteristics of a document add operation in bulk.
mongoOperationDeleteAll (Variable type)
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.
mongoOperationDeleteOne (Variable type)
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.
mongoOperationReplaceOne (Variable type)
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.
mongoOperationsOption (Variable type)
The mongoOperationsOption type is used to define the options of bulk operations.
mongoOperationUpdateAll (Variable type)
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.
mongoOperationUpdateOne (Variable type)
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.
mongoResult (Variable type)
The mongoResult type is used to find out the result during a search performed in a MongoDB database.
mongoWriteConcern (Variable type)
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.