On 10/11/06, Beau Hartshorne <[EMAIL PROTECTED]> wrote: > > Is this a known problem? Should I be writing my own SQL query instead > of trying to make extra work?
More a limitation than a problem. Python dictionaries are what they are - your use case is a little unusual compared to what I have usually seen the extra(select=...) field used for. One workaround I can think of is to use django.util.datatypes.SortedDict for your select clause. SortedDict is a Django datatype that implements the dictionary protocol but remembers insertion order. I haven't tried this myself, but I can't think of any obvious reason that it wouldn't work. The other alternative, as you suggested, is to hand-crank the SQL from scratch. Not ideal, I know, but it would work :-) Yours, Russ Magee %-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

