﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
35629	Implement async cursors	Flavio Curella	Flavio Curella	"With Psycopg3 offering async connections and async cursors, we can start implementing at least part of DEP0009 on the ORM

The first step would be just a low-level API, so that we can make the async cursor available to our users:

{{{

from django.db import new_connection

async with new_connection(using=""default"") as conn:
    async with conn.acursor() as c:
        await c.execute(...)

}}}

''Note: In order to have a simpler and easier review, I've considered `transaction.atomic` out of scope for this ticket.''"	New feature	assigned	Database layer (models, ORM)	dev	Normal		async, psycopg, PostgreSQL	Dingning Jon Janzen Andrew Godwin Paolo Melchiorre Evstifeev Roman	Accepted	1	0	0	1	0	0
