On Tuesday 26 January 2010 22:57:28 shofty wrote:
> class Vehicle(models.Model):
>         vehmake = models.CharField(max_length=30)
>         vehmodel = models.CharField(max_length=30)
>         vehyear = models.CharField(max_length=12)
>         vehtrim = models.CharField(max_length=30)
> 
Going this way you will end up with a mini query executor in your code. Why 
not use your database's? I wouldn't introduce such unnecessary complexity in 
my code.

The 4-model approach should be more robust. Running queries to get the SELECT 
values are easier that way.


-- 
Saygılarımla,
Atamert Ölçgen

 -+-
 --+
 +++

www.muhuk.com
mu...@jabber.org

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

Reply via email to