On 8/8/07, Stephen Bunn <[EMAIL PROTECTED]> wrote:
> Understandable.  But for somebody new to an ORM type model (like me)
> things might not be so clear.  If I am writing a PHP or Perl
> application, I know exactly what permission it needs because I am
> constructing the SQL.  With Django, it is building the SQL for me.

Your best bet is to thoroughly read the documentation on the ORM; once
your tables are created (it can create them for you, but you don't
have to let it do that -- instead you can have it print the SQL out to
a file for you to execute yourself), the ORM only ever does SELECT,
INSERT and UPDATE, and it's fairly obvious which ORM methods perform
which queries.

-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

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

Reply via email to