Platforms to show: All Mac Windows Linux Cross-Platform
The plugin part MBS MongoDB Plugin:Mongo:
All Console safe, 193 entry points.
- class MongoChangeStreamMBS
- class MongoClientMBS
- method GridFS(DB as String, Prefix as String = "") as MongoGridFSMBS
- method CommandQuery(dbName as String, queryJSON as String) as MongoCursorMBS
- method CommandWithServerId(dbName as String, commandJSON as String, serverId as UInt32) as String
- method ReadWriteCommand(dbName as String, commandJSON as String, OptionsJSON as String = "") as String
- method WriteCommand(dbName as String, commandJSON as String, OptionsJSON as String = "") as String
- method ReadCommand(dbName as String, commandJSON as String, OptionsJSON as String = "") as String
- method Command(dbName as String, commandJSON as String, OptionsJSON as String) as String
- method Command(dbName as String, commandJSON as String) as String
- method Ping
- method Watch(pipelineJSON as String, OptionsJSON as String = "") as MongoChangeStreamMBS
- method ServerDescriptions as MongoServerDescriptionMBS()
- method ServerDescription(ServerID as UInt32) as MongoServerDescriptionMBS
- method NewCursorFromCommandReply(commandReplyJSON as String, OptionsJSON as String = "") as MongoCursorMBS
- method FindDatabases(OptionsJSON as String = "") as MongoCursorMBS
- method Constructor(URI as MongoURIMBS)
- method Database(Name as String) as MongoDatabaseMBS
- method DefaultDatabase as MongoDatabaseMBS
- method Collection(DatabaseName as String, CollectionName as String) as MongoCollectionMBS
- method DatabasesNames(OptionsJSON as String = "") as String()
- property Handle as Integer
- property URI as MongoURIMBS
- property Parent as Variant
- property MaxMessageSize as Integer
- property MaxBSONSize as Integer
- property Session as MongoSessionMBS
- property SSLOptions as MongoSSLOptionsMBS
- shared method NowUTC as String
- shared method Time(SecondsSince1970 as Double) as String
- shared method LogMessage(Message as String)
- shared method DataToBinary(Data as MemoryBlock) as String
- shared method DataToBinary(Data as String) as String
- shared property LibraryVersion as String
- shared property Trace as Boolean
- shared property SSLLibrary as String
- event LogMessage(Level as Integer, Domain as String, Message as String)
- class MongoCollectionMBS
- method Command(commandJSON as String, OptionsJSON as String = "") as String
- method Aggregate(Flags as Integer, pipelineJSON as String, OptionsJSON as String = "") as MongoCursorMBS
- method Watch(pipelineJSON as String, OptionsJSON as String = "") as MongoChangeStreamMBS
- method FindIndexes(OptionsJSON as String = "") as MongoCursorMBS
- method Keys as String()
- method EstimatedDocumentCount(OptionsJSON as String, byref ReplyJSON as String) as Int64
- method EstimatedDocumentCount(OptionsJSON as String = "") as Int64
- method Constructor
- method Copy as MongoCollectionMBS
- method Find(FilterJSON as String, OptionsJSON as String = "") as MongoCursorMBS
- method InsertOne(documentJSON as String, OptionsJSON as String = "") as String
- method InsertMany(documentArrayJSON as String, OptionsJSON as String = "") as String
- method InsertMany(documentJSON() as String, OptionsJSON as String = "") as String
- method UpdateOne(selectorJSON as String, updateJSON as String, OptionsJSON as String = "") as String
- method UpdateMany(selectorJSON as String, updateJSON as String, OptionsJSON as String = "") as String
- method ReplaceOne(selectorJSON as String, replacementJSON as String, OptionsJSON as String = "") as String
- method DeleteOne(selectorJSON as String, OptionsJSON as String = "") as String
- method DeleteMany(selectorJSON as String, OptionsJSON as String = "") as String
- method Rename(NewDatabaseName as String, NewCollectionName as String, DropTargetBeforeRename as Boolean = false, OptionsJSON as String = "") as boolean
- property Handle as Integer
- property Name as String
- property Parent as Variant
- class MongoCursorMBS
- method Constructor
- method Clone as MongoURIMBS
- method NextRecord(byref RecordJSON as String) as Boolean
- method ErrorDocument(byref ReplyJSON as String) as Boolean
- method Records as String
- method Operator_Convert as String
- property Handle as Integer
- property Parent as Variant
- property ID as Int64
- property Current as String
- property BatchSize as UInt32
- property More as Boolean
- property Limit as Int64
- property MaxAwaitTimeMS as UInt32
- property Host as MongoHostListMBS
- class MongoDatabaseMBS
- method ReadWriteCommand(commandJSON as String, OptionsJSON as String = "") as String
- method WriteCommand(commandJSON as String, OptionsJSON as String = "") as String
- method ReadCommand(commandJSON as String, OptionsJSON as String = "") as String
- method Command(commandJSON as String) as String
- method Command(commandJSON as String, OptionsJSON as String) as String
- method Aggregate(pipelineJSON as String, OptionsJSON as String = "") as MongoCursorMBS
- method Watch(pipelineJSON as String, OptionsJSON as String = "") as MongoChangeStreamMBS
- method CreateCollection(Name as String, OptionsJSON as String = "") as MongoCollectionMBS
- method HasCollection(Name as String) as Boolean
- method Collection(Name as String) as MongoCollectionMBS
- method FindCollections(OptionsJSON as String = "") as MongoCursorMBS
- method Constructor
- method Copy as MongoDatabaseMBS
- method CollectionNames(OptionsJSON as String = "") as String()
- property Handle as Integer
- property Name as String
- property Client as MongoClientMBS
- class MongoExceptionMBS
- class MongoGridFSFileListMBS
- class MongoGridFSFileMBS
- method ReadAll as String
- method ReadAllMemory as MemoryBlock
- method Constructor
- method NewStream as MongoStreamMBS
- method Save
- method Seek(delta as Int64, whence as Integer = 0)
- method Remove
- method Write(Data as String) as Integer
- method Write(Data as MemoryBlock) as Integer
- method Read(ByteCount as Integer, MinBytes as Integer = -1) as String
- method ReadMemory(ByteCount as Integer, MinBytes as Integer = -1) as MemoryBlock
- property Handle as Integer
- property Length as Int64
- property ChunkSize as Int32
- property UploadDate as Int64
- property Position as Int64
- property ID as String
- property FileName as String
- property ContentType as String
- property MD5 as String
- property Aliases as String
- property Metadata as String
- class MongoGridFSFileOptionsMBS
- class MongoGridFSMBS
- method Constructor
- method Files as MongoCollectionMBS
- method Chunks as MongoCollectionMBS
- method RemoveByFileName(Name as String)
- method Drop
- method FindOneByFileName(FileName as String) as MongoGridFSFileMBS
- method FindOne(filterJSON as String, OptionsJSON as String = "") as MongoGridFSFileMBS
- method Find(filterJSON as String, OptionsJSON as String = "") as MongoGridFSFileListMBS
- method Find2(filterJSON as String, OptionsJSON as String = "") as MongoGridFSFileMBS()
- method CreateFile(options as MongoGridFSFileOptionsMBS) as MongoGridFSFileMBS
- method CreateFileFromStream(stream as MongoStreamMBS, options as MongoGridFSFileOptionsMBS) as MongoGridFSFileMBS
- property Handle as Integer
- class MongoHostListMBS
- class MongoServerDescriptionMBS
- class MongoSessionMBS
- method StartTransaction
- method CommitTransaction as String
- method AbortTransaction
- method Constructor(client as MongoClientMBS)
- property Handle as Integer
- property Client as Variant
- property TransactionState as Integer
- property InTransaction as Boolean
- property ServerID as UInt32
- property SessionID as String
- property ClusterTime as String
- class MongoSSLOptionsMBS
- method Constructor
- property ClientCertificateKeyFile as String
- property ClientCertificateKeyPassword as String
- property CertificateAuthorityFile as String
- property CertificateAuthorityDirectory as String
- property CertificateRevocationListFile as String
- property AllowInvalidCertificates as Boolean
- property AllowInvalidHostnames as Boolean
- class MongoStreamMBS
- method ReadAll as String
- method ReadAllMemory as MemoryBlock
- method Write(Data as String) as Integer
- method Write(Data as MemoryBlock) as Integer
- method Read(ByteCount as Integer, MinBytes as Integer = -1) as String
- method ReadMemory(ByteCount as Integer, MinBytes as Integer = -1) as MemoryBlock
- method Flush
- method Close
- method Constructor
- property Handle as Integer
- property TimeOut as Boolean
- property ShouldRetry as Boolean
- shared method NewStreamFromFile(File as FolderItem) as MongoStreamMBS
- shared method NewStreamFromPath(Path as String) as MongoStreamMBS
- class MongoURIMBS
- method Constructor(URI as String)
- method Copy as MongoURIMBS
- property TLS as Boolean
- property Options as String
- property Handle as Integer
- property DatabaseName as String
- property UserName as String
- property Password as String
- property URI as String
- property ServiceHostName as String
- property ServiceName as String
- property AuthSource as String
- property AuthMechanism as String
- property Compressors as String
- property Hosts as MongoHostListMBS
- property AppName as String
- property Credentials as String
Blog Entries
- News from the MBS Xojo Plugins Version 24.4
- News from the MBS Xojo Plugins Version 24.2
- MonkeyBread Software Releases the MBS Xojo Plugins in version 24.2
- MonkeyBread Software Releases the MBS Xojo Plugins in version 23.5
- MonkeyBread Software Releases the MBS Xojo Plugins in version 23.4
- News from the MBS Xojo Plugins Version 23.2
- News from the MBS Xojo Plugins in Version 23.0
- MonkeyBread Software Releases the MBS Xojo Plugins in version 23.0
- News from the MBS Xojo Plugins Version 22.5
- Distinct in MongoDB to find all tags from documents
Xojo Developer Magazine
- 22.6, page 10: News
- 22.5, page 10: News
- 22.4, page 9: News
- 22.1, page 9: News
- 21.6, page 8: News
- 21.4, page 10: News
- 21.1, pages 94 to 95: A Database That Connects, A Mongo DB photo database used with FileMaker and Xojo by Stefanie Juchmes
- 20.6, page 9: News
