일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 나만의 상점
- Banker's
- swift 화면전환
- 시트 탭 사라짐
- league of legends
- Aspose.cells
- Android
- .csv
- 세로 스크롤 막대
- LEFT JOIN
- 썸머노트
- Kakao API Address
- MYSQL
- python
- Excel
- upbit
- chart.js
- 한글깨짐
- Banker's rounding
- 업비트
- 가로 스크롤 막대
- rounding
- MS-SQL
- 스크롤 사라짐
- Oracle
- 일본여행
- MSSQL
- 초딩수학
- Request.Form
- CSV
Archives
- Today
- Total
DBA
python Microsoft SQL Server (mssql) 사용 하기 - mssql모듈 설치 본문
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