第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何連接Python中的MySQL數(shù)據(jù)庫(kù)?

如何連接Python中的MySQL數(shù)據(jù)庫(kù)?

桃花長(zhǎng)相依 2019-06-04 17:09:39
如何連接Python中的MySQL數(shù)據(jù)庫(kù)?如何使用python程序連接到MySQL數(shù)據(jù)庫(kù)?
查看完整描述

3 回答

?
交互式愛情

TA貢獻(xiàn)1712條經(jīng)驗(yàn) 獲得超3個(gè)贊

以下是一種方法,使用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()

參考文獻(xiàn)


查看完整回答
反對(duì) 回復(fù) 2019-06-04
  • 3 回答
  • 0 關(guān)注
  • 647 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)