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
Allows you to get information about a MongoDB file (gridFS).
Example
cntMDB is mongoConnection("srv-mongodb://db1.example.net")
Fi is mongoGridFSFileInfo
Fi = MongoGridFSGetFileInfo(cntMDB.Database["CRM"], "productpng")
Trace(Fi.Size)
Trace(Fi.ContentType)
Syntax
<Result> = MongoGridFSGetFileInfo(<File system> , <File name>)
<Result>: mongoGridFSFileInfo variable
MongoGridFSFileInfo variable containing information about the file.
<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.
<File name>: Character string
Name of file found in the MongoDB file system whose information must be retrieved.
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 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help