pip install pymysql
import pymysql
# MySQL Connection 연결
conn = pymysql.connect(host='localhost', user='tester', password='',
db='testdb', charset='utf8')
# Connection 으로부터 Cursor 생성
curs = conn.cursor()
# SQL문 실행
sql = "select * from customer"
curs.execute(sql)
# 데이타 Fetch
rows = curs.fetchall()
print(rows) # 전체 rows
# print(rows[0]) # 첫번째 row: (1, '김정수', 1, '서울')
# print(rows[1]) # 두번째 row: (2, '강수정', 2, '서울')
# Connection 닫기
conn.close()
참고 : http://pythonstudy.xyz/python/article/202-MySQL-%EC%BF%BC%EB%A6%AC
'Python' 카테고리의 다른 글
Django Template에서 연산이 필요할 때 mathfilters 설치 (게시글 번호 표시 참조) (0) | 2019.10.11 |
---|---|
django Function Based View 응답 (JSON, 파일다운, 템플릿) (0) | 2019.10.02 |
django DB 테이블 삭제하고 다시 생성, DB 변경 (0) | 2019.09.11 |
python 배열 - List (0) | 2019.09.10 |
(Django) Pycharm 에서 run시 static 디렉토리 못찾는 경우 (0) | 2019.09.04 |