DatabaseManagementSystems/Practical/Assignment-A9+B4+C1 (Mini Project)/mongo_Connectivity.txt
Kshitij 3049887277
Added content.
- Notes
- Practical (Databases, Handouts, Queries, Softcopies, Write-ups)
- Question Papers
- DISCLAIMER file and motto
Lastly, updated README file.
2025-01-07 19:49:54 +05:30

22 lines
372 B
Plaintext
Executable File

sudo python3 -m pip install pymongo
###Open mongo
use test1
db.createCollection("emp")
###Open Python
from pymongo import MongoClient
client=MongoClient("mongodb://127.0.0.1:27017")
database=client.test1
collection=database.emp
collection.insert_one({"name":"smartphone","quantity":"10","price":"50000"})
print("inserted")
client.close()
## check output in mongo