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)
Adding New Database Drivers in Docker
I'm trying to install the driver pymssql according to the instruction:
https://superset.apache.org/docs/databases/docker-add-drivers/
I didn't understand where to create the file requirements-local.tx...

Marina Vinograd
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
pymssql insert with CP1250
in last I ask about read, and I solfe problem when I use CP1250 in charset in connection string:
conn_insert = pymssql.connect(host='xxx', user='xxx',
password='xxx', database='xxx'...
Kordian Zadrożny
Votes: 0
Answers: 1
Apache Superset 'Unable to Connect to SQL Server 2017' which is enabled with TLS v1.2
I am using apache-superset 0.35.2 to connect to SQL Server 2017 and whenever I turned-on TLS v1.2 of the SQL Server, I get the following:
OperationalError: (20009, b'DB-Lib error message 20009, sever...

Mordeecai
Votes: 0
Answers: 0