I have this very simple model for a table

...
class Word(meta.Model):
      Word=meta.CharField(maxlength=50)
      def __repr__(self):
            return self.Word
      class META:
              admin = meta.Admin()

.....
Now when I try:
words.get_list(order_by=('Word'))

I will get the error:
OperationalError: (1054, "Unknown column 'mimi_words.W' in 'order
clause'")

Can anyone help/explain the problem?( mimi is a database)
Thank you
L.


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to