今天就跟大家聊聊有關怎么在python3中對接mysql數(shù)據(jù)庫,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據(jù)這篇文章可以有所收獲。
成都創(chuàng)新互聯(lián)公司是一家專注于網(wǎng)站建設、網(wǎng)站制作與策劃設計,南明網(wǎng)站建設哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設10多年,網(wǎng)設計領域的專業(yè)建站公司;建站業(yè)務涵蓋:南明等地區(qū)。南明做網(wǎng)站價格咨詢:18982081108安裝PyMySQL,用pip安裝:pip install PyMySQL
查詢找到PyMySQL,說明安裝好了。
操作數(shù)據(jù)一般步驟是:
連接數(shù)據(jù)庫 pymysql.connect(host = 'localhost',user = 'root',passwd ='xxxxxxxxx',db = 'fbl' )
創(chuàng)建游標 cursor = db.cursor()
執(zhí)行sql命令 # cursor.execute(Mysql cmd)
提交 db.commit()
關閉數(shù)據(jù)庫db.close()
#!/usr/bin/env python3 #coding:utf-8 import pymysql # 打開數(shù)據(jù)庫連接 db = pymysql.connect(host = 'localhost',user = 'root',passwd ='xxxxxxxxx',db = 'fbl' ) # 使用 cursor() 方法創(chuàng)建一個游標對象 cursor cursor = db.cursor() # 使用 execute() 方法執(zhí)行 SQL 查詢 # cursor.execute("SELECT VERSION()") cmd_list = [] cmd_list.append('show tables;') cmd_list.append('insert into hunpo(title,url) values("adfsf","qml");') cmd_list.append('insert into hunpo(title,url) values("qml","fbl");') cmd_list.append('select * from hunpo;') for cmd in cmd_list: cursor.execute(cmd) data = cursor.fetchone() print(data) #提交數(shù)據(jù) db.commit() # 關閉數(shù)據(jù)庫連接 db.close()
看完上述內容,你們對怎么在python3中對接mysql數(shù)據(jù)庫有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。