- Python MongoDB 教程
- Python MongoDB - 主页
- Python MongoDB - 简介
- Python MongoDB - 创建数据库
- Python MongoDB - 创建集合
- Python MongoDB - 插入文档
- Python MongoDB - 查询
- Python MongoDB - 查询
- Python MongoDB - 排序
- Python MongoDB - 删除文档
- Python MongoDB - 删除集合
- Python MongoDB - 更新
- Python MongoDB - 限制
- Python MongoDB 有用资源
- Python MongoDB - 快速指南
- Python MongoDB - 有用资源
- Python MongoDB - 讨论
Python MongoDB - 创建数据库
与其他数据库不同,MongoDB 并未提供创建数据库的单独命令。
通常,使用 use 命令来选择/切换到特定数据库。此命令最初会验证我们指定的数据库是否存在,若存在,则连接到该数据库。如果我们使用 use 命令指定的数据库不存在,则会创建一个新数据库。
因此,你可以使用 use 命令在 MongoDB 中创建数据库。
语法
use DATABASE 语句的基本语法如下所示 -
use DATABASE_NAME
示例
以下命令在 mydb 中创建了一个名为的数据库。
>use mydb switched to db mydb
你可以使用 db 命令验证你的创建,此命令会显示当前数据库。
>db mydb
使用 Python 创建数据库
要使用 pymongo 连接到 MongoDB,你需要导入并创建一个 MongoClient,然后你可以直接访问你需要在属性 passion 中创建的数据库。
示例
以下示例在 MongoDB 中创建了一个数据库。
from pymongo import MongoClient #Creating a pymongo client client = MongoClient('localhost', 27017) #Getting the database instance db = client['mydb'] print("Database created........") #Verification print("List of databases after creating new one") print(client.list_database_names())
输出
Database created........ List of databases after creating new one: ['admin', 'config', 'local', 'mydb']
你还可以指定创建 MongoClient 时的端口和主机名,并可以使用字典样式访问数据库。
示例
from pymongo import MongoClient #Creating a pymongo client client = MongoClient('localhost', 27017) #Getting the database instance db = client['mydb'] print("Database created........")
输出
Database created........
广告