I can access SSIS server and DB from SSMS on local desktop, getting results from select * from sysjobs
. In trying to access the SSIS server and DB from python 3.7 64-bit, using connection string
Driver={SQL Server}; Server=BSWHPACTIANDBD1; Database=msdb; Trusted_Connection=True
, I cannot connect to the database using pypyodbc or pyodbc;
failure is here:
connection = X.connect(connect_string), where X = pyodbc|pypyodbc
pyodbc error is
pyodbc.OperationalError: ('08001', '[08001] [Microsoft][ODBC SQL Server Driver][DBNETLIB]SSL Security error (18) (SQLDriverConnect); [08001] [Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionOpen (SECDoClientHandshake()). (772)')
pypyodbc error is
pypyodbc.DatabaseError: ('08001', '[08001] [Microsoft][ODBC SQL Server Driver][DBNETLIB]SSL Security error')
Windows 10, 64-bit
Any suggestions or ideas, please?