您好,登錄后才能下訂單哦!
使用PyMySQL怎么實現(xiàn)增刪查改操作?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
2.1 查詢數(shù)據庫中的表的信息:
# 需求:查詢數(shù)據庫person中info表的信息 # 1.導包 import pymysql try: # 2.連接MySQL數(shù)據庫的服務 connc = pymysql.Connect( user="root", # The first four arguments is based on DB-API 2.0 recommendation. password="4412", host='127.0.0.1', # mysql服務端的IP,默認是127.0.0.1/localhost,或者寫真實的ip database='person', port=3306, charset="utf8") # 3.創(chuàng)建游標對象 cur = connc.cursor() # 4.編寫SQL語句 sql = 'select * from info;' # 5.使用游標對象調用SQL cur.execute(sql) # 6.獲取查詢的結果 result= cur.fetchall() print(result) # 7.關閉游標對象 cur.close() # 8.關閉連接 connc.close() except Exception as e: print(e)
運行結果:
2.2 增加數(shù)據:
大部分的步驟都和前面一樣,直接在程序中注釋看:
# 需求: # 增加數(shù)據 劉德華56 男 數(shù)據 到 數(shù)據庫person--的info表中 # 修改數(shù)據 小王 的名字為 小王吧 到 數(shù)據庫person--的info表中 # 刪除數(shù)據 張三 數(shù)據庫person--的info表中 # 1.導包 import pymysql # 2.連接MySQL服務 connc = pymysql.Connect( user="root", # The first four arguments is based on DB-API 2.0 recommendation. password="4412", host='127.0.0.1', # mysql服務端的IP,默認是127.0.0.1/localhost,或者寫真實的ip database='person', port=3306, charset="utf8") # 3.創(chuàng)建游標對象 cur = connc.cursor() try: # 4.編寫、增加、刪除的SQL語句 # 增加數(shù)據 劉德華 56 男 sql = 'insert into info values(%s, %s, %s, %s)' add_data = [0,"劉德華", 56, "男"] # 5.使用游標對象執(zhí)行SQL語句 cur.execute(sql, add_data) # 6.提交操作 connc.commit() except Exception as e: print(e) # 操作失敗,數(shù)據回滾 connc.rollback() finally: # 7.關閉游標對象 cur.close() # 8.關閉連接 connc.close() print("結束!")
運行之后,看看person數(shù)據庫中 表info 的數(shù)據,確實增加成功了:
2.3 修改數(shù)據:
# 需求: # 增加數(shù)據 劉德華56 男 數(shù)據 到 數(shù)據庫person--的info表中 # 修改數(shù)據 小王 的名字為 小王吧 到 數(shù)據庫person--的info表中 # 刪除數(shù)據 張三 數(shù)據庫person--的info表中 # 1.導包 import pymysql # 2.連接MySQL服務 connc = pymysql.Connect( user="root", # The first four arguments is based on DB-API 2.0 recommendation. password="4412", host='127.0.0.1', # mysql服務端的IP,默認是127.0.0.1/localhost,或者寫真實的ip database='person', port=3306, charset="utf8") # 3.創(chuàng)建游標對象 cur = connc.cursor() try: # 4.編寫、增加、刪除的SQL語句 # 修改數(shù)據 李四 的名字為 李四的爸爸 sql = 'update info set name=%s where name="李四"' update_data = ["李四的爸爸"] # 5.使用游標對象執(zhí)行SQL語句 cur.execute(sql, update_data) # 6.提交操作 connc.commit() except Exception as e: print(e) # 操作失敗,數(shù)據回滾 connc.rollback() finally: # 7.關閉游標對象 cur.close() # 8.關閉連接 connc.close() print("結束!")
運行之后,看看person數(shù)據庫中 表info 的數(shù)據,確實修改成功了:
2.3 刪除數(shù)據:
# 需求: # 增加數(shù)據 劉德華56 男 數(shù)據 到 數(shù)據庫person--的info表中 # 修改數(shù)據 小王 的名字為 小王吧 到 數(shù)據庫person--的info表中 # 刪除數(shù)據 張三 數(shù)據庫person--的info表中 # 1.導包 import pymysql # 2.連接MySQL服務 connc = pymysql.Connect( user="root", # The first four arguments is based on DB-API 2.0 recommendation. password="4412", host='127.0.0.1', # mysql服務端的IP,默認是127.0.0.1/localhost,或者寫真實的ip database='person', port=3306, charset="utf8") # 3.創(chuàng)建游標對象 cur = connc.cursor() try: # 4.編寫、增加、刪除的SQL語句 # 修改數(shù)據 李四 的名字為 李四的爸爸 sql = 'update info set name=%s where name="李四"' update_data = ["李四的爸爸"] # 5.使用游標對象執(zhí)行SQL語句 cur.execute(sql, update_data) # 6.提交操作 connc.commit() except Exception as e: print(e) # 操作失敗,數(shù)據回滾 connc.rollback() finally: # 7.關閉游標對象 cur.close() # 8.關閉連接 connc.close() print("結束!")
運行之后,看看person數(shù)據庫中 表info 的數(shù)據,確實刪除成功了:
關于使用PyMySQL怎么實現(xiàn)增刪查改操作問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業(yè)資訊頻道了解更多相關知識。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。