Commit 2dfda83
committed
Mention that PonyORM works with MariaDB as well
Because MySQL and MariaDB use the same on-the-wire protocol and most
SQL-level features are identical, PonyORM also works with MariaDB, using the
MySQL provider.
Tested on MariaDB 10.6.14.
After creating a 'test' database, and a user 'whoever' with access to that
database (`GRANT ALL PRIVILEGES ON test.* TO whoever`), the "first steps"
from https://docs.ponyorm.org/firststeps.html work fine, e.g.:
from pony.orm import *
db=Database()
class Person(db.Entity):
name=Required(str)
age=Required(int)
db.bind(provider='mysql', user='dlenski', password='foobar', db='test')
db.generate_mapping(create_tables=True)1 parent 3f60505 commit 2dfda83
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
0 commit comments