日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 运维知识 > 数据库 >内容正文

数据库

python logging mysql_Python 操作 MySQL 的正确姿势

發(fā)布時(shí)間:2023/12/20 数据库 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python logging mysql_Python 操作 MySQL 的正确姿势 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

歡迎大家關(guān)注騰訊云技術(shù)社區(qū)-博客園官方主頁(yè),我們將持續(xù)在博客園為大家推薦技術(shù)精品文章哦~

作者:邵建永

使用Python進(jìn)行MySQL的庫(kù)主要有三個(gè),Python-MySQL(更熟悉的名字可能是MySQLdb),PyMySQL和SQLAlchemy。

Python-MySQL資格最老,核心由C語(yǔ)言打造,接口精煉,性能最棒,缺點(diǎn)是環(huán)境依賴較多,安裝復(fù)雜,近兩年已停止更新,只支持Python2,不支持Python3。

PyMySQL為替代Python-MySQL而生,純python打造,接口與Python-MySQL兼容,安裝方便,支持Python3。

SQLAlchemy是一個(gè)ORM框架,它并不提供底層的數(shù)據(jù)庫(kù)操作,而是要借助于MySQLdb、PyMySQL等第三方庫(kù)來(lái)完成,目前SQLAlchemy在Web編程領(lǐng)域應(yīng)用廣泛。

本文主要介紹PyMySQL的正確使用方法,示例代碼都是選自實(shí)戰(zhàn)項(xiàng)目。

安裝

簡(jiǎn)單的方式:

pip install pymysql

如果無(wú)法聯(lián)網(wǎng),需要進(jìn)行離線安裝,例如:

pip install pymysql-x.x.x.tar.gz

導(dǎo)入

import pymysql

連接

defconnect_wxremit_db():return pymysql.connect(host='10.123.5.28',

port=3306,

user='root',

password='root1234',

database='db_name',

charset='latin1')

查詢

defquery_country_name(cc2):

sql_str= ("SELECT Fcountry_name_zh"

+ "FROM t_country_code"

+ "WHERE Fcountry_2code='%s'" %(cc2))

logging.info(sql_str)

con=mysql_api.connect_wxremit_db()

cur=con.cursor()

cur.execute(sql_str)

rows=cur.fetchall()

cur.close()

con.close()assert len(rows) == 1, 'Fatal error: country_code does not exists!'

return rows[0][0]

簡(jiǎn)單插入

definsert_file_rec(self, file_name, file_md5):

con=mysql_api.connect_wxremit_db()

cur=con.cursor()try:

sql_str= ("INSERT INTO t_forward_file (Ffile_name, Ffile_md5)",+ "VALUES ('%s', '%s')" %(file_name, file_md5))

cur.execute(sql_str)

con.commit()except:

con.rollback()

logging.exception('Insert operation error')raise

finally:

cur.close()

con.close()

批量插入

remit_ids = [('1234', 'CAD'), ('5678', 'HKD')]

con=mysql_api.connect_wxremit_db()

cur=con.cursor()try:

cur.executemany("INSERT INTO t_order (Fremit_id, Fcur_type, Fcreate_time"

+ "VALUES (%s, %s, now())", new_items)assert cur.rowcount == len(remit_ids), 'my error message'con.commit()exceptException as e:

con.rollback()

logging.exception('Insert operation error')finally:

cur.close()

con.close()

更新

defupdate_refund_trans(self, remit_id):

con=mysql_api.connect_wxremit_db()

cur=con.cursor()try:

sql_str= ("SELECT Fremit_id"

+ "FROM t_wxrefund_trans"

+ "WHERE Fremit_id='%s'" %remit_id+ "FOR UPDATE")

logging.info(sql_str)

cur.execute(sql_str)assert cur.rowcount == 1, 'Fatal error: The wx-refund record be deleted!'sql_str= ("UPDATE t_wxrefund_trans"

+ "SET Fcheck_amount_flag=1"

+ ", Fmodify_time=now()"

+ "WHERE Fremit_id='%s'" %remit_id

logging.info(sql_str)

cur.execute(sql_str)assert cur.rowcount == 1, 'The number of affected rows not equal to 1'con.commit()except:

con.rollback()

logging.exception('Update operation error')raise

finally:

cur.close()

con.close()

PyMySQL已經(jīng)相當(dāng)成熟,和Python-MySQL一樣,它在很多Linux發(fā)行版本中都是可選的安裝組件。

相關(guān)推薦

總結(jié)

以上是生活随笔為你收集整理的python logging mysql_Python 操作 MySQL 的正确姿势的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。