Re: no module named books found

2012-06-17 Thread Sabbineni Navneet
i have created a database named xam. But it still shows the same error:django.core.exceptions.ImproperlyConfigured: settings.DATABASES is improperly configured. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: no module named books found

2012-06-17 Thread Ernesto Guevara
"Do we have to create a database with that name before." Yes, you need create the database "xam" (from mysql query browser) before running syncb. 2012/6/17 Sabbineni Navneet > I have Mysqldb installed. > It still shows the same error. > > > > -- > You received this message because you are subs

Re: no module named books found

2012-06-17 Thread Sabbineni Navneet
I have Mysqldb installed. It still shows the same error. -- 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...@

Re: no module named books found

2012-06-17 Thread kooliah
On 06/17/2012 06:23 AM, Sabbineni Navneet wrote: It still shows the same error . Do we have to create a database with that name before. How do we check if i have the python-mysqldb package . -- You received this message because you are subscribed to the Google Groups "Django users" group. To p

Re: no module named books found

2012-06-16 Thread Sabbineni Navneet
It still shows the same error . Do we have to create a database with that name before. How do we check if i have the python-mysqldb package . -- 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@googl

Re: no module named books found

2012-06-16 Thread Ernesto Guevara
The problem now is the database configuration: raise ImproperlyConfigured(" settings.DATABASES is improperly configured. " django.core.exceptions.ImproperlyConfigured: settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more details. DATAB

Re: no module named books found

2012-06-16 Thread Satvir Toor
On Sat, Jun 16, 2012 at 4:58 PM, Sabbineni Navneet wrote: > DATABASES = { >     'default': { >         'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', > 'mysql', 'sqlite3' or 'oracle'. >         'NAME': 'xam',                      # Or path to database file if > using sqlite3.

Re: no module named books found

2012-06-16 Thread Sabbineni Navneet
any idea whats wrong... On Sat, Jun 16, 2012 at 10:39 PM, Sabbineni Navneet < sabbsnavneet1...@gmail.com> wrote: > when i try only books. > the error shown is > > runnerw.exe C:\Python27\python.exe "C:\Program Files > (x86)\JetBrains\PyCharm 2.5.1\helpers\pycharm\django_manage.py" syncdb > C:/Use

Re: no module named books found

2012-06-16 Thread Sabbineni Navneet
when i try only books. the error shown is runnerw.exe C:\Python27\python.exe "C:\Program Files (x86)\JetBrains\PyCharm 2.5.1\helpers\pycharm\django_manage.py" syncdb C:/Users/navneet/PycharmProjects/djangotest2 Traceback (most recent call last): File "C:\Program Files (x86)\JetBrains\PyCharm 2.5

Re: no module named books found

2012-06-16 Thread Ernesto Guevara
Check the structure of project: Here I use Eclipse, and my project have this structure: myproject>myproject>app In your case: djangotest2>djangotest2>books Or: djangotest2>books And in installed_apps: INSTALLED_APPS = ( 'books', ) 2012/6/16 Sabbineni Navneet > project name is django