Ideally, the following code would work: ```py import asyncpg async def main(): async with asyncpg.connect() as conn: # await conn.execute("SELECT") ``` Instead, the connection must be managed manually.