* status: new => closed
* resolution: => wontfix
Comment:
Thanks for this ticket. It already works on PostgreSQL and MySQL (however
unintentionally) when passing list of tuples, e.g.
{{{#!python
query = "SELECT * FROM raw_query_author WHERE first_name in %s"
params = [("Bill", "Jill")]
Author.objects.raw(query, params=params)
}}}
We don't really want to encourage users to use `raw()` anymore since
almost everything is covered by the ORM, so adding a new feature to raw
queries is always a bit controversial.
Please first start a discussion on the DevelopersMailingList, where you'll
reach a wider audience, and
[https://docs.djangoproject.com/en/stable/internals/contributing/bugs-and-
features/#requesting-features follow the guidelines with regards to
requesting features]. Initially "wontfix" from me.
--
Ticket URL: <https://code.djangoproject.com/ticket/34168#comment:1>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.