|
|
|
|
|
<mongoCollection variable>.Find (Function) In french: <Variable mongoCollection>.Cherche Finds documents in a MongoDB collection. CollecMDB is mongoCollection
sFiltre is string
sFiltre = "{ ""name"": ""France"" }"
let MaRecherche = CollecMDB.Find(sFiltre)
FOR EACH item OF MaRecherche
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 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 the mongoFindOption variable corresponding to the search options.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|