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
Finds documents in a MongoDB collection.
Example
CollecMDB is mongoCollection
sFilter is string
sFilter = "{ ""name"": ""France"" }"
let MySearch = CollecMDB.Find(sFilter)
// Read the result
FOR EACH item of MySearch
Trace(VariantToJson(item))
END
Syntax
<Result> = <Collection>.Find(<Filter> [, <Option>])
<Result>: mongoResult variable
mongoResult variable corresponding to the search result. If a problem occurs, ErrorInfo is used to identify the error.
<Collection>: mongoCollection variable
Name of the mongoCollection variable corresponding to the MongoDB collection where the search will be performed.
<Filter>: Type of the filter used
Description of the MongoDB filter(s) that will be applied to perform the search. This filter corresponds to:
  • a JSON document, in string format.
  • a BSON document, in buffer format.
  • a variant.
<Option>: Optional mongoFindOption variable
Name of mongoFindOption variable corresponding to the search options.
Component: wd290big.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help