없으면 cmd에서 pip install pymysql 해준다.
포트는 기본 3306
import pymysql
project_db = pymysql.connect(host='127.0.0.1', db='open', user='aia', password='aia')
cursor1=project_db.cursor()
sql_select = 'select * from member'
cursor1.execute(sql_select)
while True :
row = cursor1.fetchone()
if row==None :
break;
print(row)
project_db.close()
'python_basic' 카테고리의 다른 글
[파이썬] flask_cors / crossorigin (0) | 2021.03.08 |
---|---|
[파이썬] 크롤링하기 (무신사 브랜드 인기 랭킹) (0) | 2021.02.17 |
[파이썬] 아톰 한글깨짐 현상 방지 (0) | 2021.02.09 |
[파이썬] flask (0) | 2021.02.09 |
[파이썬] beautifulsoup / flask 설치하기 (0) | 2021.02.09 |
[파이썬] csv 파일쓰기 / 읽기 (0) | 2020.11.30 |
[파이썬] 파일읽기 / 쓰기 (0) | 2020.11.30 |