This site is in development
SQLAlchemy Table reflection

Home > Blogs

SQLAlchemy Table reflection

May 23, 2021

เราสามารถสร้าง tables ใหม่ หรือ "สะท้อน" (reflect) โครงสร้างของ tables ที่มีอยู่ได้ เช่น ถ้าเราต้องการสร้าง REST API ที่ต้อง connect กับ database ที่มีอยู่แล้ว เราสามารถใช้ table reflection ได้ แต่ถ้าเราต้องการสร้าง database ใหม่ เราก็ create table structure ตามปกติ ไม่ต้อง reflect

python

engine = create_engine("someurl://") some_table = Table("some_table", metadata, autoload_with=engine)

อ่านเพิ่มเติมที่: