python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Can't connect Sqlalchemy with pyodbc to SQL Server 2000
I followed this website by installing
Install:
sudo apt-get install freetds-dev freetds-bin unixodbc-dev tdsodbc
pip install pyodbc sqlalchemy
In /etc/odbcinst.ini:
[FreeTDS]
Description=FreeTDS Dri...
T_Ner
Votes: 0
Answers: 1
Can't connect Sqlalchemy with pymssql to SQL Server 2000
Using pymssql.connect it worked
import pymssql
conn = pymssql.connect("192.168.1.12", "sa", "123456789", "aa")
cursor = conn.cursor()
cursor.execute('SELECT * ...
T_Ner
Votes: 0
Answers: 0