首页 > 解决方案 > MariaDb 和 Peewee

问题描述

我想将 MariaDb 用于我的烧瓶应用程序。所以我尝试像在文档中那样建立连接,是否有任何支持这个数据库的 orm?peewee 是否支持 MariaDb。如何使用 peewee orm 连接到 MariaDb?

标签: pythonmariadbpeewee

解决方案


Yes, it supports MariaDB in the same way that it supports MySQL. MariaDB speaks the mysql protocol and uses the mysql drivers. So just use MySQLDatabase.


推荐阅读