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
Retrieves (on the local computer) a file identified by its name and found in a MongoDB file system.
Remark: To retrieve a file using its identifier, use <mongoGridFS variable>.GetFileByID.
Example
gclGridFS is mongoGridFS
 
sDir is string = fSelectDir(SysDir(srDownloads), ...
"Select the download directory")
 
IF sDir<>"" THEN
gclGridFS.GetFile(TABLE_GridFS.COL_Name, ...
CompleteDir(sDir) + TABLE_GridFS.COL_Name)
ToastDisplay("Retrieval successfully performed.")
END
Syntax
<Result> = <File system>.GetFile(<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 variable
Name of the mongoGridFS variable that corresponds to the Mongo file system to use.
<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.
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