sqlalchemy for Postgres中的默认事务隔离级别是什么?

2024-05-28 18:42:09 发布

您现在位置:Python中文网/ 问答频道 /正文

我对Postgres DB使用sqlalchemy

engine = create_engine(
    "postgresql://postgres:postgres@localhost/test"

...

创建没有Postgres方言(psycopg2、pg8000或其他)的引擎。所以我的问题是:什么是默认的事务隔离级别?什么是默认的Postgres方言


Tags: test引擎localhostdbsqlalchemypostgresqlcreatepostgres

热门问题