Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Impossibile connettere pyODBC con SQL Server 2008 Express R2

Il seguente codice di test funziona per me per connettere Python 2.7.5 con SQL Server 2008 R2 Express Edition:

# -*- coding: utf-8 -*-
import pyodbc

connStr = (
    r'Driver={SQL Server};' +
    r'Server=(local)\SQLEXPRESS;' +
    r'Database=myDb;' +
    r'Trusted_Connection=Yes;'
    )

db = pyodbc.connect(connStr)

cursor1 = db.execute('SELECT [word] FROM [vocabulary] WHERE [ID]=5')

while 1:
    row = cursor1.fetchone()
    if not row:
        break
    print row.word
cursor1.close()
db.close()

e la seguente stringa di connessione funziona anche per me perché la mia istanza \SQLEXPRESS è in ascolto sulla porta 52865:

connStr = (
    r'Driver={SQL Server};' +
    r'Server=127.0.0.1,52865;' +
    r'Database=myDb;' +
    r'Trusted_Connection=Yes;'
    )