flask SQLAlchemy pymysql 连接数据库
Posted 坚持下去 不断精进
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flask SQLAlchemy pymysql 连接数据库相关的知识,希望对你有一定的参考价值。
SQLite
sqlite:///database.db
mysql+pymysql://user:[email protected]:port/db_name
Postgres
postgresql+psycopg2://user:[email protected]:port/db_name
MSSQL
mssql+pyodbc://user:[email protected]_name
Oracle
oracle+cx_oracle://user:[email protected]:port/db_name
----
class DevConfig(Config):
debug=True
SQLALCHEMY_DATABASE_URI="Your_uri"
以上是关于flask SQLAlchemy pymysql 连接数据库的主要内容,如果未能解决你的问题,请参考以下文章