Sunday, February 21, 2010

Django db lists

Keep forgetting this one.

To get data from the database and convert into a list in Django

Entry.objects.values_list('id', flat=True).order_by('id')

No comments:

Post a Comment