AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Administrar bases de datos / Big Data / Gestión de archivos Mongo
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.
sFilter is string
sFilter = "{ ""name"": ""France"" }"
let MySearch = MongoFind(CollecMDB, sFilter)
// Read the result
FOR EACH item OF MySearch
Trace(VariantToJSON(item))
END
Syntax
<Result> = MongoFind(<Collection> , <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.
Related Examples:
Native access to MongoDB Unit examples (WINDEV): Native access to MongoDB
[ + ] This example shows how to use the main functions of native access to MongoDB databases: adding data, reading (searching), modifying and deleting data in the database. The example also shows functions for saving files in the MongoDB GridFS data system.
Component: wd290big.dll
Versión mínima requerida
  • Versión 22
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 22/06/2023

Señalar un error o enviar una sugerencia | Ayuda local