반응형
# -*- coding: utf-8 -*- import pymysql pymysql.install_as_MySQLdb() conn = pymysql.connect(host='', user='', password='', db='', charset='') cursor = conn.cursor() sql=open("test.sql").read() # .sql 파일 읽음 cursor.execute(sql) cursor.fetchall() conn.close()
반응형
'Python > Python' 카테고리의 다른 글
[Python] Virtualenv 가상환경 설치 (0) | 2019.01.04 |
---|---|
[Python][pip] UnicodeDecodeError 해결 방법 (2) | 2019.01.02 |
[Python] 특정 월의 마지막날짜 구하는 방법 (0) | 2018.01.24 |
[Python] ^M 제거 (0) | 2018.01.19 |
[Python] list to dict & string to dict (0) | 2018.01.19 |