溫馨提示×

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

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

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

發(fā)布時(shí)間:2020-07-29 15:00:44 來(lái)源:網(wǎng)絡(luò) 閱讀:1516 作者:tty之星 欄目:編程語(yǔ)言

今天呢主要對(duì)pymysql模塊進(jìn)行使用講解一下:

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

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

 

查詢操作:

 

 

 

import pymysql

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

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

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

    results = cur.fetchall()  # 獲取查詢的所有記錄
    print("id", "name", "password")
    # 遍歷結(jié)果
    for row in results:
        id = row[0]
        name = row[1]
        password = row[2]
        print(id, name, password)
except Exception as e:
    raise e
finally:
    db.close() #關(guān)閉連接

 

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

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

 

 

import pymysql
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()
except Exception as e:
    # 錯(cuò)誤回滾
    db.rollback()
finally:
    db.close()

 

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

更新操作:

 

import pymysql

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

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

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

try:
    cur.execute(sql_update % ("lxf", 1))  # 像sql語(yǔ)句傳遞參數(shù)
    # 提交
    db.commit()
except Exception as e:
    # 錯(cuò)誤回滾
    db.rollback()
finally:
    db.close()

 

 



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

 

刪除操作:

 

 

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

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

 

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

 

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

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


#!/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模塊對(duì)數(shù)據(jù)庫(kù)的操作與備份

 

 其實(shí)這里只是一個(gè)簡(jiǎn)單的備份,還可以加上time模塊備份每一天有日期,另外還可以加上hash模塊對(duì)密碼進(jìn)行加密,如果要想了解這兩個(gè)模塊的用發(fā)可以看看我的python分類中有相關(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