标签:pool sync oca user root local bubuko hone http
import asyncio
import aiomysql
async def test(loop):
# 这里的loop就是我们通过asyncio.get_event_loop()创建的,但是其实可以不传,因为会自动创建一个
async with aiomysql.create_pool(host="localhost", port=3306, user="root",
password="zgghyys123", db="satori", loop=loop) as pool:
async with pool.acquire() as conn:
async with conn.cursor() as cursor:
await cursor.execute("select * from girl")
data1 = await cursor.fetchone()
data2 = await cursor.fetchall()
print(data1)
print(data2)
pool.close()
await pool.wait_closed()
if __name__ == ‘__main__‘:
loop = asyncio.get_event_loop()
loop.run_until_complete(test(loop))
(0, ‘古明地觉‘, 16, ‘f‘) ((1, ‘椎名真白‘, 17, ‘f‘), (2, ‘古河渚‘, 20, ‘f‘))
import tornado.ioloop
import aiomysql
async def test():
# 这里的loop就是我们通过asyncio.get_event_loop()创建的,但是其实可以不传,因为会自动创建一个
async with aiomysql.create_pool(host="localhost", port=3306, user="root",
password="zgghyys123", db="satori") as pool:
async with pool.acquire() as conn:
async with conn.cursor() as cursor:
await cursor.execute("select * from girl")
data1 = await cursor.fetchone()
data2 = await cursor.fetchall()
print(data1)
print(data2)
pool.close()
await pool.wait_closed()
if __name__ == ‘__main__‘:
tornado.ioloop.IOLoop.current().run_sync(test)

pass
标签:pool sync oca user root local bubuko hone http
原文地址:https://www.cnblogs.com/traditional/p/10165429.html