您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)如何使用python連接mysql數(shù)據(jù)庫數(shù)據(jù)方式,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
前言:
使用python
連接mysql數(shù)據(jù)庫數(shù)據(jù)
有以下兩種讀取數(shù)據(jù)的方式推薦:
一種是通過游標(biāo),及fetch系列方法進(jìn)行操作,另一種是通過pandas的read_sql()進(jìn)行讀取并操作。各種方法各有優(yōu)劣,可根據(jù)具體情形,擇優(yōu)選擇使用。
示例如下:
獲取一條、多條、全部條。
import pymysql # 數(shù)據(jù)庫相關(guān)信息 dbHost = 'xxxxxxx' dbUser = 'xxx' dbPassword = '******' dbName = 'xxx' dbCharset = 'utf8' conn = pymysql.connect(host=dbHost, port=3306, user=dbUser, password=dbPassword, db=dbName, charset=dbCharset) # 獲取游標(biāo)對(duì)象 cs = conn.cursor() # 通過游標(biāo)對(duì)象,執(zhí)行sql語句,返回值為受影響記錄的行數(shù) r = cs.execute('select * from goods') # 獲取一條數(shù)據(jù) print(cs.fetchone()) # 第一條數(shù)據(jù) print("==============================================") # 再次執(zhí)行會(huì)獲取第二條數(shù)據(jù) print(cs.fetchone()) # 第二條數(shù)據(jù) # 獲取多條數(shù)據(jù) print(cs.fetchmany(3)) # 指定條數(shù) # 獲取全部數(shù)據(jù) print(cs.fetchall()) # 再次執(zhí)行,獲取到的將是一個(gè)空元組,因?yàn)樯线叺膄etchall已經(jīng)取完了(游標(biāo)可以理解為對(duì)獲取位置的標(biāo)記) print(cs.fetchall()) # 當(dāng)獲取完畢,再查詢數(shù)據(jù)返回為() # 獲取結(jié)束后,要有始有終,關(guān)閉游標(biāo)和數(shù)據(jù)庫連接 # 關(guān)閉游標(biāo) cs.close() # 關(guān)閉連接 conn.close()
使用pandas
庫的read_sql()
函數(shù)獲取數(shù)據(jù),將得到一個(gè)DataFrame
。
import pymysql import pandas as pd # 數(shù)據(jù)庫相關(guān)信息 dbHost = 'xxxxxxx' dbUser = 'xxx' dbPassword = '******' dbName = 'xxx' dbCharset = 'utf8' conn = pymysql.connect(host=dbHost, port=3306, user=dbUser, password=dbPassword, db=dbName, charset=dbCharset) sql = "select xxxxxxxxxxxxxxxxxxxxxxxxxxxx" df = pd.read_sql(sql, conn) print(df) # 關(guān)閉連接 conn.close()
關(guān)于“如何使用python連接mysql數(shù)據(jù)庫數(shù)據(jù)方式”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。