Re: DB-Lookup on dynamically created fieldname

2007-07-25 Thread Andreas Pfrengle

...it can really be that easy. Thanks Doug. :)


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: DB-Lookup on dynamically created fieldname

2007-07-24 Thread Doug B

Maybe you could do something like this?

filterargs = {}
filterargs[fieldname] = some value
# or for other types of filtering
filterargs["%s__istartswith" % fieldname] = somevalue

mdl.objects.filter(**filterargs)

You might also want to take a look at the function get_model()

from django.db.models import get_model()

mdl = get_model('appname','modelname')



--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---