ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / Big Data / Managing Mongo files
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Runs a generic command on a MongoDB database or on a MongoDB collection.
Example
// Run a command on a MongoDB database
MongoExecuteCommand(DatabaseMDB, "{ ""ping"" : 1 }")
Syntax

Running a command on a MongoDB database Hide the details

<Result> = MongoExecuteCommand(<Database> , <Command>)
<Result>: mongoResult variable
mongoResult variable corresponding to the result of command. If a problem occurs. ErrorInfo is used to identify the error.
<Database>: mongoDatabase variable
Name of the mongoDatabase variable corresponding to the MongoDB database where the command will be run.
<Command>: Character string, buffer or variant
Document describing the command to run. This document can correspond to:
  • a document in JSON format. In this case, this parameter corresponds to a character string.
  • a document in BSON format. In this case, this parameter corresponds to a buffer.
  • a variant.

Running a command on a MongoDB collection Hide the details

<Result> = MongoExecuteCommand(<Collection> , <Command>)
<Result>: mongoResult variable
mongoResult variable corresponding to the result of command. If a problem occurs. ErrorInfo is used to identify the error.
<Collection>: mongoCollection variable
Name of the mongoCollection variable representing the MongoDB collection in which the command will run.
<Command>: Character string, buffer or variant
Document describing the command to run. This document can correspond to:
  • a document in JSON format. In this case, this parameter corresponds to a character string.
  • a document in BSON format. In this case, this parameter corresponds to a buffer.
  • a variant.
Component: wd290big.dll
Minimum version required
  • Version 22
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help