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