Python使用adbapi实现MySQL数据库的异步存储

本文介绍如何使用Python的adbapi模块,结合Twisted库,实现与MySQL数据库的异步交互。通过runInteraction方法,可以实现非阻塞的数据库操作,提升应用程序的性能。
摘要由CSDN通过智能技术生成
#!/usr/bin/python3
 
__author__ = 'css3html5'
__blog__ = 'https://blog.csdn.net/qq_38402659'
 
import pymysql,time
from twisted.enterprise import adbapi
from twisted.internet import reactor
 
 
def go_insert(cursor, sql):
    # 对数据库进行插入操作,并不需要commit,twisted会自动帮我commit
    try:
        for i in range(1):
            data = str(i)
            cursor.execute(sql, data)
            lastrowid = int(cursor.lastrowid)
            print(lastrowid)
    except Exception as e:
        print(e)
 
 
def handle_error(failure):
    # 打印错误
    if failure:
        print(failure)
 
 
if __name__ == '__main__':
    # 数据库基本配置
    db_settings = {
        'host': 'localhost',
        'db': 'db',
        'user': 'root',
        'password': 'root',
        'charset': 'utf8',
        'use_unicode': True,
        'port':3306
    }
    # sql语
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值