Python MongoDB ลบฐานข้อมูล บทความนี้สอนใช้คำสั่ง drop_database เพื่อลบฐานข้อมูล (Databases) จาก MongoDB ด้วยภาษา Python โดยใช้ module pymongo พร้อมแสดงผลลัพธ์ออกสู่หน้าจอ สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Python MongoDB ลบฐานข้อมูล
from pymongo import MongoClient
conn = "mongodb://localhost:27017/"
client = MongoClient(conn)
client.drop_database('demo')
print('Python MongoDB ลบ Database เรียบร้อย')
ผลลัพธ์
Python MongoDB ลบ Database เรียบร้อย
Python MongoDB ลบฐานข้อมูล จากตัวอย่างใช้คำสั่ง drop_database เพื่อลบฐานข้อมูลชื่อ demo จาก MongoDB ด้วยภาษา Python พร้อมแสดงผลลัพธ์ออกสู่หน้าจอด้วยคำสั่ง print