- Python MongoDB Tutorial
- Python MongoDB - Home
- Python MongoDB - Introduction
- Python MongoDB - Create Database
- Python MongoDB - Create Collection
- Python MongoDB - Insert Document
- Python MongoDB - Find
- Python MongoDB - Query
- Python MongoDB - Sort
- Python MongoDB - Delete Document
- Python MongoDB - Drop Collection
- Python MongoDB - Update
- Python MongoDB - Limit
- Python MongoDB Useful Resources
- Python MongoDB - Quick Guide
- Python MongoDB - Useful Resources
- Python MongoDB - Discussion
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中直接访问需要创建的数据库了。
例子
以下示例在 MangoDB 中创建一个数据库。
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........