Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

in a view I am constructing I need to consult multiple databases. What I want to do is use the results of on query_set to search another db table.

I have functioning mydb1_query_set, what I need now is something like this:

for row in mydb1_query_set:
        mydb2_query_set = Mytable.objects.filter(id=row.id)

So that I keep adding to the initially empty mydb2_query_set as I iterate. I realize that there is no QuerySet.append, so how do I achieve what I want? Any help much appreciated...

share|improve this question
3  
It might be good to include some model descriptions - because I dont like the forcing of the query to a list - especially in a loop. So depending on the result you want, and what you are working with - it may be possible to aggregate the queries, using annotate, group by or whatever. But for something like what you are using there something like Mytable.objects.filter(id__in=list(mydb1_query_set)) .. where mydb1_query_set is just a list of ids. This may be totally wrong for you - but i just want to show you for loops and list conversions may not be the only/best choice. – Storm Nov 17 '11 at 18:48

1 Answer

up vote 1 down vote accepted

Use a list instead of a queryset, and then you can append or extend as you wish.

mydb2_query = []
for row in mydb1_query_set:
    mydb2_query.extend(list(Mytable.objects.filter(id=row.id)))
share|improve this answer
That is along the lines of what I was thinking, but why do I get a AttributeError: 'list' object attribute 'extend' is read-only error? – Darwin Tech Nov 17 '11 at 17:26
ahh. ok - I got it. – Darwin Tech Nov 17 '11 at 17:31
but this is slow, don't you force the queryset to hit database in each item ? – iva123 Dec 23 '11 at 23:53
Yes, there is one db query for each item. I was trying to answer the question 'how do you append results to queryset?', not give the most optimal solution. If there were performance problems, then you could try a different approach, as Storm suggested in the comment above. – Alasdair Dec 24 '11 at 13:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.