pymongo (python+mongodb) 删除集合/gridfs?
有人知道删除文档集合以及删除 gridfs 数据库的命令吗?
Anyone know the commands to drop a collection of documents and also drop a gridfs database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要删除集合,您可以调用
drop()
方法,或者使用drop_collection()
数据库对象上的方法:GridFS 文件存储在名为
fs< 的集合中/代码> 默认情况下。要删除 GridFS 文件,只需删除该集合:
To delete a collection, you can either call the
drop()
method on it, or use thedrop_collection()
method on the database object:GridFS files are stored in a collection called
fs
by default. To delete the GridFS files, just drop that collection: