개발/Python
python mysql 연동 (pymysql)
# 테스트 환경 → python 2.7.5 # 설치 pip install pymysql # 소스코드 1 2 3 4 5 6 7 import pymysql db = pymysql.connect(user='[계정명]', passwd='[비밀번호]', host='[호스트 IP]', port=3306, db='[DB명]', charset='utf8') cursor = db.cursor(pymysql.cursors.DictCursor) cursor.execute('show tables;') result = cursor.fetchall() # 하나만 가져오고 싶다면 cursor.fetchone() Colored by Color Scripter cs
2020. 9. 28. 14:52