Updade connection prefix (#12673)

The connection prefix should be different if the DB2 dialect is different.
This commit is contained in:
Carlos Fidel Selva Ochoa
2021-01-22 13:08:48 -06:00
committed by GitHub
parent e80cd61e06
commit b1c203b7d9

View File

@@ -16,3 +16,9 @@ Here's the recommended connection string:
```
db2+ibm_db://{username}:{passport}@{hostname}:{port}/{database}
```
There are two DB2 dialect versions implemented in SQLAlchemy. If you are connecting to a DB2 version without `LIMIT [n]` syntax, the recommended connection string to be able to use the SQL Lab is:
```
ibm_db_sa://{username}:{passport}@{hostname}:{port}/{database}
```