peewee 定义一个model,生成多个tabel并命名,怎么访问这些table?


定义了一个model,生成了三个table,重命名为 table_a , table_b , table_c

通过peewee知道了能通过修改 model._meta.db_name = table_name 来指定要操作的table

但我的程序是多线程的,这样通过指定 _meta.db_name 可能会干扰到其他线程,有没有更好的方法呢?

Python学生党,英文不好,请朋友们赐教

peewee python orm

电磁炮123 10 years, 1 month ago

Your Answer