Python MongoDB สร้างฐานข้อมูล บทความนี้สอนเขียนโค้ดภาษา Python โดยใช้ pymongo เพื่อสร้างฐานข้อมูล (Databases) ในระบบ MongoDB โดยฐานข้อมูลจะถูกสร้างก็ต่อเมื่อมีการเพิ่มข้อมูล สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Python MongoDB สร้างฐานข้อมูล
from pymongo import MongoClient
conn = "mongodb://localhost:27017/"
client = MongoClient(conn)
db = client['demo']
collection_name = db["product"]
item1 = {
"name" : "Computer",
"price" : 200
}
collection_name.insert_many( [item1] )
print('Python MongoDB สร้าง Database สำเร็จ')
ผลลัพธ์
Python MongoDB สร้าง Database สำเร็จ
Python MongoDB สร้างฐานข้อมูล จากตัวอย่างสร้างฐานข้อมูลชื่อ demo ตารางชื่อ product ด้วยการเพิ่มข้อมูลลง collection หรือตารางด้วยคำสั่ง insert_many พร้อมแสดงผลลัพธ์ออกสู่หน้าจอ ภาษา Python