# 테스트 환경

→ 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()
cs

'개발 > Python' 카테고리의 다른 글

파이썬 mysql 연동 (pymysql, pandas)  (0) 2020.11.17
파이썬 글자 색 지정  (0) 2020.11.05
파이썬 json 파싱 및 엑셀 파일 저장  (0) 2020.10.20
메신저 인커밍 훅 (dooray hook)  (0) 2020.10.05
python 로그 출력 (logging)  (0) 2020.09.28