On May 25, 2006, at 12:59 PM, Mary Adel wrote:
> how could i get a variable from the database in the views
>
> for example i have a model like this:
> class Menu (models.Model):
> menu_text=models.TextField(maxlength=200)
>
> and i need to get this variable from the database under certain
> condition
> for example when menu_text ='test' then write it in file
You want something like::
Menu.objects.filter(menu_text="test")
This is covered in the first tutorial (http://www.djangoproject.com/
documentation/tutorial1/), and in depth in the DB-API doc (http://
www.djangoproject.com/documentation/tutorial1/).
Jacob
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---