diff options
author | Gord Thompson <gord@gordthompson.com> | 2021-11-08 11:03:54 -0700 |
---|---|---|
committer | Gord Thompson <gord@gordthompson.com> | 2021-11-09 06:12:39 -0700 |
commit | bd1be0b7e0ecd76bdf6d26fd11cc42e1a473b319 (patch) | |
tree | bcb527a334bb3da906b8c450f93f3dc3ed683a27 /setup.cfg | |
parent | cf404d840c15fe167518dd884b295dc99ee26178 (diff) | |
download | sqlalchemy-bd1be0b7e0ecd76bdf6d26fd11cc42e1a473b319.tar.gz |
De-emphasize notion of "default driver" (DBAPI)
Fixes: #6960
Even though a default driver still exists for
each dialect, remove most usages of `dialect://`
to encourage users to explicitly specify
`dialect+driver://`
Change-Id: I0ad42167582df509138fca64996bbb53e379b1af
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -156,20 +156,20 @@ aiosqlite = sqlite+aiosqlite:///:memory: sqlite_file = sqlite:///querytest.db aiosqlite_file = sqlite+aiosqlite:///async_querytest.db pysqlcipher_file = sqlite+pysqlcipher://:test@/querytest.db.enc -postgresql = postgresql://scott:tiger@127.0.0.1:5432/test +postgresql = postgresql+psycopg2://scott:tiger@127.0.0.1:5432/test asyncpg = postgresql+asyncpg://scott:tiger@127.0.0.1:5432/test asyncpg_fallback = postgresql+asyncpg://scott:tiger@127.0.0.1:5432/test?async_fallback=true pg8000 = postgresql+pg8000://scott:tiger@127.0.0.1:5432/test postgresql_psycopg2cffi = postgresql+psycopg2cffi://scott:tiger@127.0.0.1:5432/test -mysql = mysql://scott:tiger@127.0.0.1:3306/test?charset=utf8mb4 +mysql = mysql+mysqldb://scott:tiger@127.0.0.1:3306/test?charset=utf8mb4 pymysql = mysql+pymysql://scott:tiger@127.0.0.1:3306/test?charset=utf8mb4 aiomysql = mysql+aiomysql://scott:tiger@127.0.0.1:3306/test?charset=utf8mb4 aiomysql_fallback = mysql+aiomysql://scott:tiger@127.0.0.1:3306/test?charset=utf8mb4&async_fallback=true asyncmy = mysql+asyncmy://scott:tiger@127.0.0.1:3306/test?charset=utf8mb4 asyncmy_fallback = mysql+asyncmy://scott:tiger@127.0.0.1:3306/test?charset=utf8mb4&async_fallback=true -mariadb = mariadb://scott:tiger@127.0.0.1:3306/test +mariadb = mariadb+mysqldb://scott:tiger@127.0.0.1:3306/test mssql = mssql+pyodbc://scott:tiger^5HHH@mssql2017:1433/test?driver=ODBC+Driver+13+for+SQL+Server mssql_pymssql = mssql+pymssql://scott:tiger@ms_2008 docker_mssql = mssql+pymssql://scott:tiger^5HHH@127.0.0.1:1433/test -oracle = oracle://scott:tiger@127.0.0.1:1521 -oracle8 = oracle://scott:tiger@127.0.0.1:1521/?use_ansi=0 +oracle = oracle+cx_oracle://scott:tiger@127.0.0.1:1521 +oracle8 = oracle+cx_oracle://scott:tiger@127.0.0.1:1521/?use_ansi=0 |