반응형
python -- mysql 연동하기
환경 : client -- 맥 요세미티, python 2.7.8, PyMySQL 0.6.7
mysql db server -- ubuntu 14.04 LTS 64bit Server, Mysql 5.5
참고 : https://pypi.python.org/pypi/PyMySQL/0.6.7
** PyMySQL 설치하기
$ pip install PyMySQL
** Mysql 연동하여 사용하기
>>> import pymysql.cursors
>>> conn = pymysql.connect(host='192.168.10.36',user='tester',password='tester1234',db='myschool')
>>> cur = conn.cursor()
>>> sql = 'select 1234'
>>> cur.execute(sql)
1
>>> res = cur.fetchall()
>>> res
((1234,),)
>>>
반응형
'python' 카테고리의 다른 글
python -- Mac 에서 pyenv, virtualenv 설치하기 (0) | 2016.05.02 |
---|---|
python -- 현재 디렉토리 구하기 (0) | 2015.12.02 |
jupyter 4.0 설치하기 (0) | 2015.08.16 |
python - postgresql 접속하기 (0) | 2015.05.27 |
SQLAlchemy 설치 & tutorial - winodws 7 64bit (0) | 2015.05.21 |