真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在python3中對接mysql數(shù)據(jù)庫-創(chuàng)新互聯(lián)

今天就跟大家聊聊有關怎么在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,說明安裝好了。

怎么在python3中對接mysql數(shù)據(jù)庫

操作數(shù)據(jù)一般步驟是:

  1. 連接數(shù)據(jù)庫 pymysql.connect(host = 'localhost',user = 'root',passwd ='xxxxxxxxx',db = 'fbl' )

  2. 創(chuàng)建游標 cursor = db.cursor()

  3. 執(zhí)行sql命令 # cursor.execute(Mysql cmd)

  4. 提交 db.commit()

  5. 關閉數(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ù)庫

看完上述內容,你們對怎么在python3中對接mysql數(shù)據(jù)庫有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。


分享標題:怎么在python3中對接mysql數(shù)據(jù)庫-創(chuàng)新互聯(lián)
文章網(wǎng)址:http://weahome.cn/article/jgish.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部