「python」MySQLに接続するコサンプルコード

pythonコード
import MySQLdb
conn = MySQLdb.connect(host="172.17.2.200″,
user="root",
passwd="889900″,
db="test")
cursor = conn.cursor()
cursor.execute(“select * from employeetbl")
res = cursor.fetchall()
for x in res:
print x
cursor.close()
conn.close()

Python

Posted by arkgame