> and i save a query "test.objects.filter(id=5)" in qry > > now want to run query stored in qry field
Python has an "exec" function: qry = "test.objects.filter(id=5)" exec("queryset = %s" % qry) # now, use queryset Otherwise, you can do something like : # save query import models params = {"model" : "test", "filter" : {"id" : 5}} query = models.queries(qry = unicode(params)) # run query params = eval(query.qry) queryset = getattr(models, params["model"]).objects.filter(**params["filter"]) Not tested, but you get the picture. Using json or any better serializer than str/eval may be an even better idea. Olivier --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---