溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何用python實(shí)現(xiàn)操縱mysql數(shù)據(jù)庫(kù)插入

發(fā)布時(shí)間:2022-01-24 09:32:47 來(lái)源:億速云 閱讀:155 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要講解了“如何用python實(shí)現(xiàn)操縱mysql數(shù)據(jù)庫(kù)插入”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“如何用python實(shí)現(xiàn)操縱mysql數(shù)據(jù)庫(kù)插入”吧!

python操縱mysql數(shù)據(jù)庫(kù),向一個(gè)表中插入一條新的記錄。

pycahrm提供一個(gè)很好的功能,在右邊上面,可以連接數(shù)據(jù)庫(kù),并在里面手動(dòng)操作數(shù)據(jù)庫(kù),連接步驟略過(guò)。

如何用python實(shí)現(xiàn)操縱mysql數(shù)據(jù)庫(kù)插入

如何用python實(shí)現(xiàn)操縱mysql數(shù)據(jù)庫(kù)插入

1.先看下表的結(jié)構(gòu),一個(gè)car表

如何用python實(shí)現(xiàn)操縱mysql數(shù)據(jù)庫(kù)插入

1.python過(guò)程實(shí)現(xiàn)

要先安裝一個(gè)庫(kù)pymysql

import pymysql as mysql

# 連接到數(shù)據(jù)庫(kù),.connect()返回一個(gè)connection對(duì)象
db = mysql.connect(host="localhost", port=3306, user="root", passwd="123456", db="testcar")

# SQL語(yǔ)句,冒號(hào)str是類型提示
sql: str = "insert into testcar.car (carid, brand, in_time, out_time) " \
           "VALUES ('987','寶馬','2012','2015')"

# 用db(connection對(duì)象)創(chuàng)建一個(gè)游標(biāo)
cur = db.cursor()
# 用游標(biāo)cur執(zhí)行一個(gè)數(shù)據(jù)庫(kù)的查詢命令,用result來(lái)接收返回值
result = cur.execute(sql)
print(result)

# 提交當(dāng)前事務(wù),才會(huì)提交到數(shù)據(jù)庫(kù),可以嘗試只執(zhí)行上面的代碼,看看結(jié)果
db.commit()
# 關(guān)閉游標(biāo)對(duì)象
cur.close()
# 關(guān)閉連接
db.close()

關(guān)于pymysql.connect()方法相關(guān)的對(duì)象還有方法,可以看看這位大佬的文章,里面有相關(guān)參數(shù)和返回值什么的

2.在完成過(guò)程實(shí)現(xiàn)后,嘗試模塊化設(shè)計(jì)

"""在這個(gè)文件里,完成python操縱mysql的模塊化實(shí)現(xiàn)"""

import pymysql as mysql


# 連接到數(shù)據(jù)庫(kù)
def connect(db_name):
    con = mysql.connect(host="localhost", port=3306, user="root", passwd="123456", db=db_name)
    return con


# 向表中插入一條記錄
def insert(sql, db_name):
    con = connect(db_name)
    cur = con.cursor()
    result = cur.execute(sql)
    con.commit()
    cur.close()
    con.close()
    if result == 1:
        print("執(zhí)行成功!")
    return

然后在main.py中調(diào)用

# main.py
import pmysql

sql: str = "insert into testcar.car (carid, brand, in_time, out_time) " \
           "VALUES ('asasa','法拉利','2010','2012')"

if __name__ == "__main__":
    pmysql.insert(sql, "testcar")

到此能實(shí)現(xiàn)表的插入操作了,其他的增刪查改操作也就大同小異了

感謝各位的閱讀,以上就是“如何用python實(shí)現(xiàn)操縱mysql數(shù)據(jù)庫(kù)插入”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)如何用python實(shí)現(xiàn)操縱mysql數(shù)據(jù)庫(kù)插入這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI