Re: trying to configure MSSQL 2012 as backend with Django.

2014-06-17 Thread sarfaraz ahmed
Hello Ezequiel I have a database in SQL Server 2012. I used the following string and everything worked.. find. Trust me I am new to django and feeling good to be part of this community. DATABASES = { 'default': { 'NAME': 'blogger', 'ENGINE': 'sqlserver_ado', 'HOST': ' '

Re: trying to configure MSSQL 2012 as backend with Django.

2014-06-16 Thread Michael Manfre
>From looking at the configuration that was posted, the solution was likely to remove "django.db.backends." from the ENGINE. That prefix is only for backends that are included with Django. Regards, Michael Manfre On Sunday, June 15, 2014 5:33:45 PM UTC-4, Ezequiel Bertti wrote: > > What was th

Re: trying to configure MSSQL 2012 as backend with Django.

2014-06-15 Thread Ezequiel Bertti
What was the solution? On Sun, Jun 15, 2014 at 5:03 PM, sarfaraz ahmed wrote: > Thanks for your help. The issue is resolved ... thanks :) > > > > On Mon, Jun 16, 2014 at 1:10 AM, sarfaraz ahmed > wrote: > >> Yes, I saw and tried the steps mentioned in that link. I get following >> error >> >>

Re: trying to configure MSSQL 2012 as backend with Django.

2014-06-15 Thread sarfaraz ahmed
Thanks for your help. The issue is resolved ... thanks :) On Mon, Jun 16, 2014 at 1:10 AM, sarfaraz ahmed wrote: > Yes, I saw and tried the steps mentioned in that link. I get following > error > > "No module named sqlserver_ado.base". > > This is lines in setting.py Please help > > DATABASES

Re: trying to configure MSSQL 2012 as backend with Django.

2014-06-15 Thread sarfaraz ahmed
Yes, I saw and tried the steps mentioned in that link. I get following error "No module named sqlserver_ado.base". This is lines in setting.py Please help DATABASES = { 'default': { 'NAME': 'blogger', 'ENGINE': 'django.db.backends.sqlserver_ado', 'HOST': ' ',

Re: trying to configure MSSQL 2012 as backend with Django.

2014-06-15 Thread Mark Phillips
Did you look here?? http://django-mssql.readthedocs.org/en/latest/ Mark On Sun, Jun 15, 2014 at 11:35 AM, sarfaraz ahmed wrote: > Hello Friends, > > I am trying to moving away from sqlite. Trying to use MS SQl 2012 as > backend. So far I installed django-mssql on my machine. When I type impor

trying to configure MSSQL 2012 as backend with Django.

2014-06-15 Thread sarfaraz ahmed
Hello Friends, I am trying to moving away from sqlite. Trying to use MS SQl 2012 as backend. So far I installed django-mssql on my machine. When I type import sqlserver_ado... It works fine. I am new to Django. Please provide me with example to get my MSSQL connected to django. More than one