This is going to depend on the version of Django you're using. Accord to
the docs for 1.7[1], this should work fine.

After playing around in the shell for a bit, I found I was getting an error
complaining about arguments not being converted during string formatting.
It seems the problem occurs when a `RawQuerySet` object is stringified.
This line[2] converts the the params into a tuple if the `params` object is
not a dictionary. For some reason, when this tuple is used in string
formatting, everything breaks.

I haven't been able to figure out a solution and, frankly, I don't even
know if this is the error you're getting. We really do need more solution.

If anyone else can shed some light on the issue I've raised, that would be
fantastic. If not, I will submit a bug report.

[1]:
https://docs.djangoproject.com/en/dev/topics/db/sql/#passing-parameters-into-raw
[2]:
https://github.com/django/django/blob/stable/1.7.x/django/db/models/query.py#L1594

On Wed, Sep 24, 2014 at 2:37 PM, Collin Anderson <cmawebs...@gmail.com>
wrote:

> Interesting. I don't use raw queries, but I wonder if Django doesn't
> support lists as parameters to raw()
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/a117b2f7-2ff4-4fe9-8c56-9d5e137acd58%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/a117b2f7-2ff4-4fe9-8c56-9d5e137acd58%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>



-- 
James Brewer
jamesbrewer.io

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAKj8pVppX1_XfqAGz2fcAFau_7YsH-gEF7VeSKQhNtTg-OsJvQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to