Connect SQL Server to Python 3 with pyodbc
问题 import pyodbc cnxn = pyodbc.connect('DRIVER={SQL Server Native Client 11.0};SERVER=LENOVO-PCN;DATABASE=testing;') cursor = cnxn.cursor() cursor.execute("select Sales from Store_Inf") row = cursor.fetchone() if row: print (row) I try using python 3 with module pyodbc to connect SQL Server Express. My codes gave a error: ('08001', '[08001] [Microsoft][SQL Server Native Client 11.0]Named Pipes Provider: Could not open a connection to SQL Server [2]. (2) (SQLDriverConnect)') Any idea for this?