engine = create_engine(
f"jdbcapi+mssql://sa:sa@172.16.37.100:1433/master",
connect_args={
"encrypt": "true",
"trustServerCertificate": "true",
"loginTimeout": "30",
},
)
with engine.connect() as conn:
result = conn.execute(text("SELECT * FROM dbo.table"))
for row in result:
print(row)
Describe the bug
Getting following exception on