The MBS Xojo MongoDB Plugin
All plugins
Documentation
Download
Mailing list
Order MongoDB Plugin license
Order Complete Set License
Plugin Content
Connect to MongoDB databases directly.
This plugin is included in our plugin archive:
Download the MBS Xojo Plugins |
||||||
macOS MBS-Xojo-Plugins243.dmg |
Windows MBS-Xojo-Plugins243.zip |
Linux MBS-Xojo-Plugins243.zip |
||||
All archives contain the same content. |
MBS MongoDB Plugin.pdf | 728K |
You can order a license here: Order
This plugin part is included if you order a Complete set license.
MongoDB is an open source cross platform NoSQL database to store JSON-like documents.
Instead of tables, you have collections and your records are JSON documents.
- Connect to MongoDB databases.
- Insert documents into collections.
- Update or delete documents.
- Find documents.
- Estimate number of documents in a collection.
Example
Connect to a database and insert a record:
const URL = "mongodb://localhost/"
dim uri as new MongoURIMBS(URL)
dim client as new MongoClientMBS(uri)
dim database as MongoDatabaseMBS = client.Database("local")
dim Collection as MongoCollectionMBS = database.Collection("test")
dim j as new JSONItem
j.Value("Hello") = "World"
dim reply as string = Collection.InsertOne(j.ToString)
// reply is { "insertedCount" : 1 }
Break
Classes
- class MongoClientMBS
- class MongoCollectionMBS
- class MongoCursorMBS
- class MongoDatabaseMBS
- class MongoExceptionMBS
- class MongoHostListMBS
- class MongoServerDescriptionMBS
- class MongoURIMBS
Trademark
MongoDB is a registered trademark of MongoDB, Inc. and is not affiliated with Monkeybread Software. We just provide functionality for Xojo to connect and use Mongo databases from your applications.
The Mongo C Driver is licensed under Apache License, Version 2.0, January 2004.
The documentation for MBS MongoDB Plugin:
show all functions and classes in this plugin.
Examples for this plugin:
Blog Entries
- News from the MBS Xojo Plugins Version 23.4
- New in MBS Xojo Plugins in version 23.1
- Watch changes in MongoDB with Xojo application
- News from the MBS Xojo Plugins Version 22.5
- MonkeyBread Software Releases the MBS Xojo Plugins in version 22.5
- News from the MBS Xojo Plugins Version 22.4
- Distinct in MongoDB to find all tags from documents
- MBS Xojo Plugins in version 22.4
- Insert record to MongoDB in Xojo
- MBS Xojo Plugins in version 22.3
Xojo Developer Magazine
- 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
Content of MongoDB Plugin.