On 20 août, 03:33, Kristofer Pettijohn <[email protected]> wrote: > Hello, > > Is it possible to create specific models without a database table?
Depends on your definition of "models". If you mean "django.db.Model" subclasses, nope - this part is nothing but a layer between your app and the database. Now you can obviously write "domain model" classes that are not tied to a relational DB, but you won't have the querying / persistance support provided by Django's ORM. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

