自动生成/更新表并使用 SQLite 的 Python ORM?
我正在为一个用 Python 编写的新桌面应用程序做一些原型设计,我想使用 SQLite 和 ORM 来存储数据。
我的问题是,是否有任何 ORM 库支持自动生成/更新数据库模式并与 SQLite 一起使用?
I am doing some prototyping for a new desktop app i am writing in Python, and i want to use SQLite and an ORM to store data.
My question is, are there any ORM libraries that support auto-generating/updating the database schema and work with SQLite?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SQLAlchemy 是支持 SQLite 的 Python ORM 领域的绝佳选择。
SQLAlchemy is a great choice in the Python ORM space that supports SQLite.
SQLAlchemy,与 sqlalchemy-migrate 库一起使用时。
SQLAlchemy, when used with the sqlalchemy-migrate library.