Hi everyone,

I have a project which uses a PostgreSQL database with several tables,
and I have created VIEWs in this database.

Now, I would like to be able to use those views from my Django
project. Is there any "official" way to do this ?

Currently, I made a new Model class, with the same fields as in my
view, but this has several disadvantages :
  * I can't use syncdb anymore (or I must ensure that the view is
created _before_ doing syncdb) ;
  * I have methods on instances of my class which should not be there
(.create, .delete, .save) (at least, I'm not using materialized
views).

Nothing insurmountable, but this is not very pretty.

So, is there anyone using database View's with Django ? How are you
doing ?


Thanks for your comments;
 - Jonathan


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