DBA

python Microsoft SQL Server (mssql) 사용 하기 - mssql모듈 설치 본문

[3] Development/Python

python Microsoft SQL Server (mssql) 사용 하기 - mssql모듈 설치

코볼 2022. 4. 29. 13:57
728x90
반응형
SMALL

# mssql 모듈 설치

$ pip install pymssql

 

# MSSQL 접속

conn = pymssql.connect(host="", port=, user="sa", password="", database="EXAMPLE", charset="utf8")
cursor = conn.cursor()
cursor.execute("select * from TableName")
row = cursor.fetchone()
while row:
    print(row[0], row[1], row[2], row[3])
    row = cursor.fetchone()
conn.close()
728x90
반응형
LIST
Comments