当前位置:网站首页>Install mongodb database
Install mongodb database
2022-07-07 06:26:00 【Fan zhidu】
Reference resources Windows Platform installation MongoDB | Novice tutorial
(1) The first step is to install monogodb database
Note that there is a tick in the lower left corner to install graphics software during installation. Be sure to remove . meanwhile , The global environment variable configuration must be set .
(2) The second installation navicat Graphical interface ( To baidu ), Operate the graphics management software after downloading :
stay Navicat for MongoDB Using document
operation mongoDb database
Refer to the website :python operation MongoDB database _ I love my blog very much -CSDN Blog _python operation mongodb database
import pymongo
client = pymongo.MongoClient(host='localhost',port=27017)
db = client['jd']
collection = db['ds']
book_info = {
'id':'9568',
'state':'MA'
}
result = collection.insert_one(book_info)
print(result)
print(result.inserted_id)
边栏推荐
- POI导出Excel:设置字体、颜色、行高自适应、列宽自适应、锁住单元格、合并单元格...
- c语言面试写一个函数在字符串N中查找第一次出现子串M的位置。
- 力扣62 不同路径(从矩阵左上到右下的所有路径数量) (动态规划)
- JMeter's own functions are not enough? Why don't you develop one yourself
- 博士申请 | 上海交通大学自然科学研究院洪亮教授招收深度学习方向博士生
- ceres-solver和g2o性能比较
- Oracle迁移中关于大容量表使用数据泵(expdp、impdp)导出导入容易出现的问题和注意事项
- 如何解决数据库插入数据显示SQLSTATE[HY000]: General error: 1364 Field ‘xxxxx‘ doesn‘t have a default value错误
- [SOC FPGA] custom IP PWM breathing lamp
- MySQL(十)
猜你喜欢
随机推荐
蚂蚁庄园安全头盔 7.8蚂蚁庄园答案
JWT 认证
UIC (configuration UI Engineering) public file library adds 7 industry materials
ceres-solver和g2o性能比较
A program lets you understand what static inner classes, local inner classes, and anonymous inner classes are
生活中的开销,怎么记账合适
laravel 使用腾讯云 COS5全教程
[SOC FPGA] custom IP PWM breathing lamp
3531. Huffman tree
The difference between string constants and string objects when allocating memory
[SOC FPGA] peripheral PIO button lights up
Laravel uses Tencent cloud cos5 full tutorial
Crudini 配置文件编辑工具
软件测试的几个关键步骤,你需要知道
C面试24. (指针)定义一个含有20个元素的double型数组a
jmeter 函数助手 — — 随机值、随机字符串、 固定值随机提取
ST表预处理时的数组证明
微信小程序隐藏video标签的进度条组件
如何在Touch Designer 2022版中设置解决Leap Motion不识别的问题?
PostgreSQL database timescaledb function time_ bucket_ Gapfill() error resolution and license replacement









