How can i connect to local advantage database using pyodbc in python?

微笑、不失礼 提交于 2019-11-28 14:29:22

The name of the driver is Advantage StreamlineSQL ODBC, so the bare minimum connect string is:

DRIVER={Advantage StreamlineSQL ODBC};DataDirectory=D:\Temp

Other optinal options are:

DefaultType=Advantage
User ID=xxx
Password=xxx
ServerTypes=2
AdvantageLocking=ON
CharSet=ANSI
Language=ANSI
Description=My ADS connection
Locking=Record
MaxTableCloseCache=25
MemoBlockSize=64
Rows=False
Compression=Internet
CommType=TCP_IP
TLSCertificate=     
TLSCommonName=
TLSCiphers=
DDPassword=Dictionary Password
EncryptionType=
FIPS=False
TrimTrailingSpaces=True
SQLTimeout=600
RightsChecking=OFF    

If you want to use the Local Server you have to pass ServerTypes=1 like you already have in your original string.

For more options and documentation see also:

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!