반응형
요즘 왔다리 갔다리 하면서 공부하는 중이다.
pyodbc라는 걸 이용해서 MSSQL에 접속했다. 구글링으로 찾은 걸 약간 변경 했다.
import pyodbc
#cnxn = pyodbc.connect("driver={SQL Server}; server=localhost; database = spotfire_server; uid=sa; pwd=spotfire")
cnxn = pyodbc.connect("DSN=Mssql; uid=sa; pwd=spotfire")
cursor = cnxn.cursor()
cursor.execute("select user_id, user_name from users")
rows = cursor.fetchall()
for row in rows:
print row.user_id
결과는 다음과 같다. 나온 결과는 GUID 값인데 샘플 Data가 없어서 Spotfire 사용자 계정 테이블을 타겟으로 걸어서 그렇다.
'Data Analysis > Python' 카테고리의 다른 글
Spotfire & Python : 특정값이 일치할 때 해당 행의 다른 값을 가져오기 (6) | 2015.08.20 |
---|---|
Spotfire & Python : Marking 한 값을 가져오기 (22) | 2015.08.20 |
Spotfire & Python : Add Bookmark (0) | 2015.07.02 |
Spotfire & Python : BarChart 정렬 또는 역정렬 (12) | 2015.06.29 |
Python : Start (0) | 2015.03.30 |
댓글