ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
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
Copies a file from the local computer to a MongoDB file system (gridFS).
Example
cnxMDB is mongoConnection("mongodb://db1.exemple.net")
MongoGridFSSendFile(cnxMDB.Database["CRM"], fDataDir() + ["\"] + "produit.png", ...
 "produit.png")
sFic is string = fSelect("", "", "Sélectionnez le fichier à envoyer dans GridFS", ...
"Tous les fichiers (*.*)" + TAB + "*.*", "", fselOpen)
IF sFic <> "" THEN
MongoGridFSSendFile(gclGridFS, sFic, fExtractPath(sFic, fFile + fExtension))
ToastDisplay("Envoi terminé avec succès.")
END
Syntax
(<Result>, <File information>) = MongoGridFSSendFile(<File system> , <Name of file to copy> , <Name of copied file>)
<Result>: Boolean
  • True if the operation was performed,
  • False if a problem occurs. ErrorInfo is used to identify the error.
<File information>: mongoGridFSFileInfo variable
mongoGridFSFileInfo variable corresponding to the copied file.
<File system>: mongoGridFS or mongoDatabase variable
File system of the MongoDB database to use. Corresponds to:
  • the name of the mongoGridFS variable corresponding to the MongoDB 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 copy>: Character string
Path and name of file found on the local computer that will be copied into the MongoDB database.
<Name of copied file>: Character string
Name of file copied into the MongoDB database.
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.
Business / UI classification: Business Logic
Component: wd290big.dll
Minimum version required
  • Version 22
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/23/2023

Send a report | Local help