使用SQLAlchemy列出数据库表

使用SQLAlchemy列出数据库表,第1张

使用SQLAlchemy列出数据库表

从引擎开始:

from sqlalchemy import create_engineengine = create_engine("postgresql://u:p@host/database")

所有表/列名称的快速路径,请使用检查器:

from sqlalchemy import inspectinspector = inspect(engine)for table_name in inspector.get_table_names():   for column in inspector.get_columns(table_name):       print("Column: %s" % column['name'])

docs:http :
//docs.sqlalchemy.org/zh/rel_0_9/core/reflection.html? highlight=
inspector# fine-grained-reflection-with-
inspector


或者,使用元数据/表:

from sqlalchemy import metaDatam = metaData()m.reflect(engine)for table in m.tables.values():    print(table.name)    for column in table.c:        print(column.name)

docs:http :
//docs.sqlalchemy.org/en/rel_0_9/core/reflection.html#reflecting-all-tables-
at-
once



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5650180.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存