|
|
|
|
|
MongoGridFSGetFile (Function) In french: MongoGridFSRécupèreFichier Retrieves (on the local computer) a file identified by its name and found in a MongoDB file system. MongoGridFSGetFile(cnx.BaseDeDonnées["CRM"], "produit.png", ...
fDataDir() + ["\"] + "produit.png")
sRep is string = fSelectDir(SysDir(srDownloads), ...
"Sélectionnez le répertoire de téléchargement")
IF sRep<>"" THEN
MongoGridFSGetFile(gclGridFS, TABLE_GridFS.COL_Nom, ...
CompleteDir(sRep) + TABLE_GridFS.COL_Nom)
ToastDisplay("Récupération terminée avec succès.")
END
Syntax
<Result> = MongoGridFSGetFile(<File system> , <Name of file to retrieve> , <Name of local file>)
<Result>: Boolean - True if the operation was performed,
- False if a problem occurs. ErrorInfo is used to identify the error.
<File system>: mongoGridFS or mongoDatabase variable File system of the MongoDB database to use. Corresponds to: - the name of the mongoGridFS variable that corresponds to the Mongo file system.
- the name of the mongoDatabase variable that corresponds to the MongoDB database. In this case, the file system uses the "fs" prefix.
<Name of file to retrieve>: Character string Name of the file in the MongoDB file system that will be retrieved on the local computer. <Name of local file>: Character string Path and name of file retrieved on the local computer.
Related Examples:
|
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.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|