python 데이터베이스 읽 기 및 그림 그리 기 인 스 턴 스

1.해당 라 이브 러 리 파일 설치

sudo apt-get install python-mysqldb 
2.데이터베이스 조작

import MySQLdb 
db = MySQLdb.connect(“localhost”, “root”, “pwd”, “dbname”, charset='utf8' )
데이터베이스 조회

#                           
cursor = db.cursor(cursorclass = MySQLdb.cursors.DictCursor)
try:

#   SQL   
cursor.execute(sql) 
#          
results = cursor.fetchall() 
for row in results: 
fname = row[‘key'] 
#      
print fname 
except: 
print “Error: unable to fecth data” 
db.close()
이상 의 python 이 데이터 베 이 스 를 읽 고 그림 을 그 리 는 인 스 턴 스 는 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.참고 가 되 고 저 희 를 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기