Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
5k views

django orm, how to view (or log) the executed query?

Is there a way I can print the query the Django ORM is generating? Say I execute the following statement: Model.objects.filter(name='test') How do I get to see the generated SQL query? Thanks in ...
9
votes
3answers
645 views

Tricky model inheritance - Django

I think this is a bit tricky, at least for me. :) So I have 4 models Person, Singer, Bassist and Ninja. Singer, Bassist and Ninja inherit from Person. The problem is that each Person can be any ...
7
votes
2answers
192 views

Django order_by causes LEFT JOIN

Can anyone tell me why when I add the order_by() the query that gets output changes from a INNER JOIN to an LEFT OUTER JOIN? Is there any way to preserve the INNER JOIN-ness? data = ...
6
votes
4answers
296 views

Why can't I save my model instances after editing them?

I have a model which I can instantiate just fine, but once created, if I attempt to save it I get an IntegrityError saying that the primary key must be unique. What's causing this? There are other ...
6
votes
2answers
2k views

Django: Perform case-insensitive lookups by default

I need to perform case-insensitive queries on username by default when using the Django Auth framework. I tried fixing the issue by writing a custom subclass of Queryset and overriding the ...
5
votes
1answer
263 views

Pivoting data and complex annotations in Django ORM

The ORM in Django lets us easily annotate (add fields to) querysets based on related data, hwoever I can't find a way to get multiple annotations for different filtered subsets of related data. This ...
5
votes
2answers
2k views

Django Blob Model Field

How do you store a "blob" of binary data using Django's ORM, with a PostgreSQL backend? Yes, I know Django frowns upon that sort of thing, and yes, I know they prefer you use the ImageField or ...
5
votes
1answer
238 views

How does commit_on_success handle being nested?

I'm a bit confused about how I should handle transactions in a particular situation. I've got some code that boils down to this: from django.db import transaction @transaction.commit_on_success def ...
5
votes
2answers
918 views

Serializing Foreign Key objects in Django

I have been working on developing some RESTful Services in Django to be used with both Flash and Android apps. Developing the services interface has been quite simple, but I have been running into an ...
5
votes
2answers
212 views

Is there a downside to using “.filter().filter().filter()…” in Django?

Are the following two calls resolved to the equivalent SQL query in Django? Chaining multiple calls Model.objects \ .filter(arg1=foo) \ .filter(arg2=bar) \ ... Wrapping all the args together: ...
5
votes
1answer
278 views

Popularity Algorithm - SQL / Django

I've been looking into popularity algorithms used on sites such as Reddit, Digg and even Stackoverflow. Reddit algorithm: t = (time of entry post) - (Dec 8, 2005) x = upvotes - downvotes y = {1 if ...
5
votes
1answer
487 views

Django: get aggregated value of two multipied columns

I need to get aggregated value of two columns. So first multiple them together and then get theirs sum(). Code below naturallz does not work, it is just for clarification. Is it somehow possible or ...
5
votes
2answers
2k views

Django ORM: caching and manipulating ForeignKey objects

Consider the following skeleton of a models.py for a space conquest game: class Fleet(models.Model): game = models.ForeignKey(Game, related_name='planet_set') owner = models.ForeignKey(User, ...
4
votes
2answers
171 views

Django ORM & Unit of Work

Is there any easy way / library / external app to introduce Unit of Work concept to Django ORM? What approaches or techniques do you use to solve the problem of importing the same row twice in a ...
4
votes
1answer
175 views

Speeding Up the Django Admin Delete Page

How would you speed up the Django Admin record deletion action/page? I have a model B with a foreign key constraint to model A. For every record in A, there are about 10k records in B bound to A. So ...
4
votes
1answer
210 views

Annotate over Multi-table Inheritance in Django

I have a base LoggedEvent model and a number of subclass models like follows: class LoggedEvent(models.Model): user = models.ForeignKey(User, blank=True, null=True) timestamp = ...
4
votes
7answers
225 views

Merging duplicates in a list? - Question is more complex than it seems

So I have a huge list of entries in a DB (MySql) I'm using Python and Django in the creation of my web application. This is the base Django model I'm using: class DJ(models.Model): alias = ...
4
votes
2answers
408 views

How to properly query a ManyToManyField for all the objects in a list (or another ManyToManyField)?

I'm rather stumped about the best way to build a Django query that checks if all the elements of a ManyToMany field (or a list) are present in another ManyToMany field. As an example, I have several ...
4
votes
3answers
1k views

Default image for ImageField in Django's ORM

I'm using an ImageField to store profile pictures on my model. How do I set it to return a default image if no image is defined?
4
votes
3answers
1k views

Django: is there a way to count SQL queries from an unit test?

I am trying to find out the number of queries executed by a utility function. I have written a unit test for this function and the function is working well. What I would like to do is track the number ...
3
votes
2answers
41 views

Using Django ORM get_or_create with multiple databases

Django's ORM supports querying from a specific database (when multiple are defined in your project) via the .using() function for filter-based operations. e.g. ...
3
votes
1answer
142 views

Django ORM: Group by and Max

I have a model that looks like this: Requests: user, req_time, req_text In the DB, the records can look like this: id, user_id, req_time, req_text 1 1 TIMESTAMP YES 2 1 ...
3
votes
1answer
290 views

How to select_related on reverse foreign key?

A BlogPost has many Comments. I want to get a list of BlogPosts and all their comments. Thus, I have BlogPost.objects.filter(my_filter).select_related() But the ForeignKey is on the Comment, not ...
3
votes
2answers
120 views

Annotating a Sum results in None rather than zero

I'm making a QA site that is similar to the page you're on right now. I'm attempting to order answers by their score, but answers which have no votes are having their score set to None rather than 0. ...
3
votes
2answers
100 views

Extract latest entry from a model in Django

Let's say I have the following Django model: class Info(models.Model): instrument = models.ForeignKey('Instrument') date = models.DateTimeField() How can I extract the entry with the newest ...
3
votes
1answer
123 views

Django: does the ORM support the SQL “IN” operator?

Does the Django ORM support the SQL IN operator? Something like: SELECT * FROM user WHERE id IN (1, 5, 34, 567, 229) How do I use the Django ORM to make a query like that? Thanks.
3
votes
2answers
306 views

Django N+1 query solution

I visited http://guides.rubyonrails.org/active_record_querying.html after talking with a peer regarding N+1 and the serious performance implications of bad DB queries. ActiveRecord (Rails): clients ...
3
votes
2answers
503 views

How to map PostgreSQL array field in Django ORM

I have an array field in my PostrgreSQL database of type text. Is there a way to map this into a Django model ?
3
votes
3answers
438 views

Why is iterating through a large Django QuerySet consuming massive amounts of memory?

The table in question contains roughly ten million rows. for event in Event.objects.all(): print event This causes memory usage to increase steadily to 4 GB or so, at which point the rows print ...
3
votes
1answer
337 views

django-orm case-insensitive order by

I know, I can run a case insensitive search from DJango ORM. Like, User.objects.filter(first_name__contains="jake") User.objects.filter(first_name__contains="sulley") ...
3
votes
1answer
212 views

How many rows were deleted?

Is it possible to check how many rows were deleted by a query? queryset = MyModel.object.filter(foo=bar) queryset.delete() deleted = ... Or should I use transactions for that? ...
3
votes
2answers
1k views

Django: Sum on an date attribute grouped by month/year

I'd like to put this query from SQL to Django: "select date_format(date, '%Y-%m') as month, sum(quantity) as hours from hourentries group by date_format(date, '%Y-%m') order by date;" The part that ...
3
votes
3answers
747 views

Django: select_related and GenericRelation

Does select_related work for GenericRelation relations, or is there a reasonable alternative? At the moment Django's doing individual sql calls for each item in my queryset, and I'd like to avoid that ...
3
votes
1answer
73 views

Is there a way to make a query respect the order of the inputted parameters?

(Please let me know if this is completely absurd, that is probably a reason why I haven't found anything on this.) This story has two models Ranking and Artist, Ranking is generically related to ...
3
votes
2answers
903 views

django - reorder queryset after slicing it

I fetch the latest 5 rows from a Foo model which is ordered by a datetime field. qs = Foo.objects.all()[:5] In the following step, I want to reorder the queryset by some other criteria (actually, ...
3
votes
2answers
3k views

How do I use the the Django ORM to query this many-to-many example?

I have the following models: class Author(models.Model): author_name = models.CharField() class Book(models.Model): book_name = models.CharField() class AuthorBook(models.Model): author_id = ...
3
votes
2answers
995 views

How can one get the set of all classes with reverse relationships for a model in Django?

Given: from django.db import models class Food(models.Model): """Food, by name.""" name = models.CharField(max_length=25) class Cat(models.Model): """A cat eats one type of food""" ...
2
votes
1answer
68 views

Retrieve multilple objects from multiple categories (many-to-many rel) more djangoish way

I am developing a newslettersystem. In this system there are Newslettercategories and Newsletterabos (speak subscriptions) which have a many to many relation. Consider these two models: class ...
2
votes
4answers
53 views

Why use “through” argument for ManyToManyField in Django models?

Looking through the Django docs and trying to figure out the use of the "through" argument. Here is a link to the doc. The example: class Person(models.Model): name = ...
2
votes
1answer
61 views

Chaining multiple filter() in Django, is this a bug?

I always assumed that chaining multiple filter() calls in Django was always the same as collecting them in a single call. # Equivalent Model.objects.filter(foo=1).filter(bar=2) ...
2
votes
1answer
40 views

Automatically merging arbitrary Django models

I have two Django-ORM managed databases that I'd like to merge. Both have a very similar schema, and both have the standard auth_users table, along with a few other shared tables that reference each ...
2
votes
2answers
80 views

Django ORM SELECT with join

Models in django: class Key(models.Model): id = models.AutoField(primary_key=True, blank=True) name = models.CharField(max_length=50) class Record(models.Model): id = ...
2
votes
1answer
79 views

Django: SELECT … FROM ONLY table

Can Django do SELECT ... FROM ONLY ... queries without using .raw()? I need it to omit archived tables in my queries to Postgres.
2
votes
2answers
104 views

Filtering Django Query by the Record with the Maximum Column Value

Is there an easy way to filter a Django query based on which record has a max/min value in a column? I'm essentially asking these questions, but in the specific context of Django's ORM. e.g. Say I ...
2
votes
1answer
121 views

How to force Django Admin to use select_related?

One of my models is particularily complex. When I try to edit it in Django Admin it performs 1042 queries and takes over 9 seconds to process. I know I can replace a few of the drop-downs with ...
2
votes
2answers
180 views

Django select_related with fields specified breaks over multiple one to one relationships

I'm getting a weird error trying to select_related over multiple OneToOneField relationships, e.g. in the case where the target field is a grandchild subclass. I'd love someone to help me understand ...
2
votes
2answers
169 views

Can I control the GROUP BY in django 1.3's orm?

I think this will best be explained with an example. Here is what the data would looks like: |project | |id|name | |1 |some project | |2 |my other project| |run ...
2
votes
1answer
90 views

Does Django support JOIN?

Does Django ORM support join like INNER JOIN, LEFT JOIN, RIGHT JOIN AND OUTER JOIN? I read the document, and did not found one. For example how can I do this? SELECT * FROM auth_user_groups JOIN ...
2
votes
1answer
93 views

Changing South Migration Directory

How do you change the location where South looks for an app's migrations? By default, South assumes an app's migrations are in /migrations. However, I've migrated the model of a third-party package ...
2
votes
2answers
134 views

How to use the Django ORM to query only by date in a datetimefield

I have a table with a DataTimeField. I'd like to get a list of all the objects where the DateTimeField = a specific day (ignoring the time part). The SQL would look something like: select * from ...

1 2 3 4 5