On Mon, 2009-01-05 at 11:18 +0100, Matias Surdi wrote:
> Hi,
> 
> For some reports, I need to allow the users to enter a sql query.It is 
> required for this query (a sql SELECT) to be run as a read only database 
> user.
> 
> 
> Any idea how to implement this with django?

Set the DATABASE_USER setting to a user with read-only permissions. If
you're asking whether you can use one user for one query and another for
others, the answer is, for all intents and purposes, no. Django isn't
designed to be a total replacement for all your SQL needs. Far from it.
If you need that sort of fine-grained control, just use the standard
Python DB API and run the query directly.

Regards,
Malcolm



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