Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

MongoDB.CollectionNames

Fetches the list of the names of all of the collections in database.

Component Version macOS Windows Linux Server iOS SDK
MongoDB 12.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "MongoDB.CollectionNames"; MongoDBRef )   More

Parameters

Parameter Description Example
MongoDBRef The reference number for the mongo connection. $MongoDB

Result

Returns list or error.

Description

Fetches the list of the names of all of the collections in database.
see MongoDB documentation for list of options:
https://www.mongodb.com/docs/manual/reference/command/listCollections/

Examples

Show list of available collection in the local database:

Set Variable [ $Mongo ; Value: MBS( "MongoDB.New" ) ]
Set Variable [ $r ; Value: MBS( "MongoDB.SetURI"; $Mongo; "mongodb://localhost/" ) ]
Set Variable [ $r ; Value: MBS( "MongoDB.Connect"; $Mongo) ]
Set Variable [ $r ; Value: MBS( "MongoDB.OpenDatabase"; $Mongo; "local" ) ]
Set Variable [ $list ; Value: MBS( "MongoDB.CollectionNames"; $Mongo ) ]
Show Custom Dialog [ "Collections" ; $list ]
Set Variable [ $r ; Value: MBS( "MongoDB.Release"; $Mongo ) ]

See also

Example Databases

This function checks for a license.

Created 22nd May 2022, last changed 24th May 2022


MongoDB.CollectionName - MongoDB.Command