2021
10-21
10-21
Python流行ORM框架sqlalchemy的简单使用
安装http://docs.sqlalchemy.org1、安装#进入虚拟环境#执行./python3-mpipinstallimportsqlalchemyprint(sqlalchemy.__version__)#1.1.15我这里使用的版本是1.1.15创建连接对象http://docs.sqlalchemy.org/en/latest/orm/tutorial.html#connectingfromsqlalchemyimportcreate_engine#连接本地test数据库engine=create_engine("mysql://root:root@localhost/test?charset=utf8")运行时会出错,因为需要驱动库,默认...
继续阅读 >