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

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

pymysql模塊對數(shù)據(jù)庫的操作與備份

今天呢主要對pyMySQL模塊進行使用講解一下:

創(chuàng)新互聯(lián)是一家專業(yè)提供靈壽企業(yè)網(wǎng)站建設,專注與網(wǎng)站設計、成都網(wǎng)站設計、H5頁面制作、小程序制作等業(yè)務。10年已為靈壽眾多企業(yè)、政府機構(gòu)等服務。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站設計公司優(yōu)惠進行中。

https://www.cnblogs.com/lilidun/p/6041198.html

Linux系統(tǒng)上安裝pip3通過這個文檔查看

 

查詢操作:

 

 

 

importpymysql

db = pymysql.connect(host="localhost",user="root",password="",db="lxf",port=3306)
# 使用cursor()獲取操作游標
cur = db.cursor()

#查詢操作
sql ="select* from user"

try:
    cur.execute(sql)  # 執(zhí)行sql語句

    results = cur.fetchall()  # 獲取查詢的所有記錄
    print("id","name","password")
    # 遍歷結(jié)果
    forrowinresults:
        id = row[0]
        name = row[1]
        password = row[2]
        print(id,name,password)
exceptExceptionase:
    raisee
finally:
    db.close()#關閉連接

 

 pymysql模塊對數(shù)據(jù)庫的操作與備份

插入數(shù)據(jù):

 

 

importpymysql
db = pymysql.connect(host='localhost',user='root',password='',db='lxf',port=3306)
cur = db.cursor()
#插入操作
sql_insert ="""insert into user(id,name,pwd) values(5,'liu','123')"""

try:
    cur.execute(sql_insert)
    # 提交
    db.commit()
exceptExceptionase:
    # 錯誤回滾
    db.rollback()
finally:
    db.close()

 

 pymysql模塊對數(shù)據(jù)庫的操作與備份

更新操作:

 

importpymysql

# 3.更新操作
db = pymysql.connect(host="localhost",user="root",
                     password="",db="lxf",port=3306)

# 使用cursor()方法獲取操作游標
cur = db.cursor()

sql_update ="update user set name = '%s' where id = %d"

try:
    cur.execute(sql_update % ("lxf",1))  # 像sql語句傳遞參數(shù)
    # 提交
    db.commit()
exceptExceptionase:
    # 錯誤回滾
    db.rollback()
finally:
    db.close()

 

 



 pymysql模塊對數(shù)據(jù)庫的操作與備份

 

刪除操作:

 

 

importpymysql
db = pymysql.connect(host='localhost',user='root',password='',db='lxf',port=3306)
#使用游標
cur = db.cursor()

sql_delete="delete from user where id = %d"
try:
    cur.execute(sql_delete %(1))#傳遞參數(shù)
    #提交
    db.commit()
exceptExceptionase:
    #錯誤回滾
    db.rollback()
finally:
    db.close()

 

 pymysql模塊對數(shù)據(jù)庫的操作與備份

 

數(shù)據(jù)庫備份:

 pymysql模塊對數(shù)據(jù)庫的操作與備份

#!/usr/bin/env python

import pymysql

import os

import time

TIME =time.strftime("%Y-%m-%d %H:%M:%S",time.localtime())

connect = pymysql.connect(host='localhost',user='root',password='123456',db='test',port=3306)

conn = connect.cursor()

os.system("""mysqldump -uroot -p123456 test > /root/test.sql""")

pymysql模塊對數(shù)據(jù)庫的操作與備份

 

 其實這里只是一個簡單的備份,還可以加上time模塊備份每一天有日期,另外還可以加上hash模塊對密碼進行加密,如果要想了解這兩個模塊的用發(fā)可以看看我的python分類中有相關的操作


網(wǎng)站名稱:pymysql模塊對數(shù)據(jù)庫的操作與備份
分享網(wǎng)址:http://weahome.cn/article/gphhpg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部