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

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python 事务操作_Python实现完整的事务操作示例

發布時間:2025/5/22 python 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python 事务操作_Python实现完整的事务操作示例 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

本文實例講述了Python事務操作實現方法。分享給大家供大家參考,具體如下:

#coding=utf-8

import sys

import MySQLdb

class TransferMoney(object):

def __init__(self,conn):

self.conn = conn

#檢查賬戶是否合法

def check_acct_avaiable(self,acctid):

cursor = self.conn.cursor()

try:

sql = "select * from account where acctid=%s" % acctid

cursor.execute(sql)

print "check account:" + sql

rs = cursor.fetchall()

if len(rs) != 1:

raise Exception("account %s illega" % acctid)

finally:

cursor.close()

#檢查是否有足夠的錢

def has_enough_money(self,acctid,money):

cursor = self.conn.cursor()

try:

sql = "select * from account where acctid=%s and money > %s" % (acctid,money)

cursor.execute(sql)

print "has enough money:" + sql

rs = cursor.fetchall()

if len(rs) != 1:

raise Exception("account %s not enough money" % acctid)

finally:

cursor.close()

#賬戶減錢

def reduce_money(self,acctid,money):

cursor = self.conn.cursor()

try:

sql = "update account set money = money-%s where acctid = %s" % (money,acctid)

cursor.execute(sql)

print "reduce_money:" + sql

if cursor.rowcount != 1:

raise Exception("reduce money fail %s" % acctid)

finally:

cursor.close()

#賬戶加錢

def add_money(self,acctid,money):

cursor = self.conn.cursor()

try:

sql = "update account set money = money+%s where acctid = %s" % (money,acctid)

cursor.execute(sql)

print "add_money:" + sql

if cursor.rowcount != 1:

raise Exception("add money fail %s" % acctid)

finally:

cursor.close()

#主執行語句

def transfer(self,source_acctid,target_acctid,money):

try:

self.check_acct_avaiable(source_acctid)

self.check_acct_avaiable(target_acctid)

self.has_enough_money(source_acctid,money)

self.reduce_money(source_acctid,money)

self.add_money(target_acctid,money)

self.conn.commit()

except Exception as e:

self.conn.rollback()

raise e

if __name__ == "__main__":

source_acctid = sys.argv[1]

target_acctid = sys.argv[2]

money = sys.argv[3]

conn = MySQLdb.Connect(host = '127.0.0.1',port=3306,user='root',passwd='',db='test',charset='utf8')

tr_money = TransferMoney(conn)

try:

tr_money.transfer(source_acctid,target_acctid,money)

except Exception as e:

print "Happen:" + str(e)

finally:

conn.close()

更多關于Python相關內容感興趣的讀者可查看本站專題:《Python常見數據庫操作技巧匯總》、《Python編碼操作技巧總結》、《Python數據結構與算法教程》、《Python Socket編程技巧總結》、《Python函數使用技巧總結》、《Python字符串操作技巧匯總》、《Python入門與進階經典教程》及《Python文件與目錄操作技巧匯總》

希望本文所述對大家Python程序設計有所幫助。

總結

以上是生活随笔為你收集整理的python 事务操作_Python实现完整的事务操作示例的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。