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
Returns information about a MongoDB database.
Example
MDBDatabase is mongoDatabase
infoMDB is mongoDatabaseInfo
infoMDB = MDBDatabase.Info()
Trace("The database " + infoMDB.Name + " contains " + infoMDB.NbDocuments + " documents.")
gclDatabase is mongoDatabase
 
// Read information about the current database
clInfo is mongoDatabaseInfo = gclDatabase.Info()
 
sInfo is string = StringBuild([
Information about the MongoDB database
--------------------------------
Name of the database: %1
Number of collections: %2
Number of documents: %3
Average size of documents: %4
Total database size: %5
Total storage size: %6
],
clInfo.Name,
clInfo.NbCollections,
clInfo.NbDocuments,
LengthToString(clInfo.AverageDocumentSize),
LengthToString(clInfo.DataSize),
LengthToString(clInfo.StorageSize))
 
Info(sInfo)
Syntax
<Result> = <Database>.Info()
<Result>: mongoDatabaseInfo variable
mongoDatabaseInfo variable containing information about the database.
<Database>: mongoDatabase variable
Name of the mongoDatabase variable corresponding to the MongoDB database being handled.
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