Re: Stand-alone Django ORM question

2007-08-30 Thread Abhijit Choudhury
<[EMAIL PROTECTED]> To: Django users Sent: Thursday, August 30, 2007 11:47:31 AM Subject: Re: Stand-alone Django ORM question Define app_name in Meta nested-class: class Meta: app_name = &quo

Re: Stand-alone Django ORM question

2007-08-30 Thread daev
Define app_name in Meta nested-class: class Meta: app_name = "some_name" --~--~-~--~~~---~--~~ 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

Re: Stand-alone Django ORM question

2007-08-30 Thread canen
I'm not sure but maybe you need the INSTALLED_APPS setting. On Aug 30, 10:21 am, ceeed <[EMAIL PROTECTED]> wrote: > Hello, > I am a Django newbie and trying to learn it. > > As a project, I am trying to use the Django ORM in a stand-alone sense > (i.e., without creating a project and app). I am

Stand-alone Django ORM question

2007-08-30 Thread ceeed
Hello, I am a Django newbie and trying to learn it. As a project, I am trying to use the Django ORM in a stand-alone sense (i.e., without creating a project and app). I am using SQLITE and have defined the models. I would like to a) create the table in the database based on my models, b) populate