首页 > 代码库 > python mongodb 的调试

python mongodb 的调试

在命令行中调试数据库的存取,使用的命令如下:

1. 查看数据库

    show dbs

2. 打开数据库

     use db_name

3. 显示集合名称

     show collections

4. 显示数据

db.collection_name.find()

 

python mongodb 的调试