如何连接Python中的MySQL数据库?

如何连接Python中的MySQL数据库?

如何使用python程序连接到MySQL数据库?



桃花长相依
浏览 627回答 3
3回答

交互式爱情

以下是一种方法,使用MySQLdb,它只支持Python 2:#!/usr/bin/pythonimport MySQLdb# Connectdb = MySQLdb.connect(host="localhost",                      user="appuser",                      passwd="",                      db="onco")cursor = db.cursor()# Execute SQL select statementcursor.execute                      ("SELECT * FROM location")# Commit your changes if writing# In this case, we are only reading data# db.commit()                      # Get the number of rows in the resultsetnumrows = cursor.rowcount# Get and display one row at a                       timefor x in range(0, numrows):     row = cursor.fetchone()     print row[0], "-->", row[1]# Close the connectiondb.close()参考文献
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python
MySQL