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.
Example
MDBDatabase is mongoDatabase
// Run a command on a MongoDB database
MDBDatabase.ExecuteCommand("{ ""ping"" : 1 }" )
Syntax

Running a command on a MongoDB database Hide the details

<Result> = <Database>.RunCommand(<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.
Component: wd290big.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help