Connect to MongoDB and drop a collection.
Create a MongoDB connection to the database mongotest. Here, the database server dbtb01 hosts this database using port number 27017.
conn =
mongo with properties:
Database: 'mongotest'
UserName: ''
Server: {'dbtb01'}
Port: 27017
CollectionNames: {'airlinesmall', 'employee', 'largedata' ... and 3 more}
TotalDocuments: 23485919conn is the
mongo object that contains the MongoDB connection. The object properties contain information about the connection and the
database.
The database name is mongotest.
The user name is blank.
The database server is dbtb01.
The port number is 27017.
This database contains six document collections. The first three collection names are
airlinesmall, employee, and
largedata.
This database contains 23,485,919 documents.
Verify the MongoDB connection.
The database connection is successful because the isopen function returns 1. Otherwise, the database connection is closed.
Display the collections in the database before dropping a collection by
using the CollectionNames property.
ans =
1×7 cell array
Columns 1 through 5
{'airlinesmall'} {'employee'} {'largedata'} {'nyctaxi'} {'product'}
Columns 6 through 7
{'restaurants'} {'taxidata'}
Drop an existing collection from the database by using the MongoDB connection. Specify the collection name
taxidata.
Display the collections in the database again by using the
CollectionNames property. The database no longer
contains the collection taxidata.
ans =
1×7 cell array
Columns 1 through 5
{'airlinesmall'} {'employee'} {'largedata'} {'nyctaxi'} {'product'}
Columns 6
{'restaurants'}
Close the MongoDB connection.