http://code.google.com/p/django-mssql/ django-mssql is a SQL Server 2005/2008 backend for Django running on Windows.
4
votes
1answer
568 views
django-pyodbc vs django-mssql
It's in the title really. I want to run Django against MSSQL 2005. Both look reasonably active and up to date. I can't seem to see any unique points for either.
Can anyone recommend one over the ...
3
votes
1answer
111 views
Django - How to prevent database foreign key constraint creation
I have a model that is backed by a database view.
class OrgCode(models.Model):
org_code = models.CharField(db_column=u'code',max_length=15)
org_description = ...
2
votes
3answers
124 views
Django. Database query: distinct for one field
I have following fields and data in DB:
FirstName LastName Date
John Davis 10-10-2011
Joe Gray 20-09-2011
Ann Davis 03-04-2010
Ann ...
2
votes
1answer
240 views
django-mssql not working in Apache w/ mod-wsgi, but works fine in dev server
I have a Django application using django-mssql to communicate w/ SQL Server.
This works just fine in the dev server (runserver) but under Apache/mod-wsgi, I get a fail related to it trying to find a ...
1
vote
2answers
410 views
How To Download django-mssql On Windows
I can't download django-mssql from Google Code there doesn't seem to be a direct download link and the svn wont work for me.
Anybody know a direct download link?
1
vote
2answers
244 views
Django and SQL Server 2005 - Zombie status?
I'm using Django 1.2 and django-mssql.
While performing the following
for unicorn in Unicorn.objects.all():
print unicorn.color
I'm getting the following error at around the 100th iteration:
...
0
votes
1answer
150 views
pywintypes27.dll not found using Apache, Django, pywin32, Python2.7 and mod_wsgi
I have a Django application using django-mssql to communicate w/ SQL Server.
This works just fine in the dev server (runserver) but under Apache/mod-wsgi, I get a error related to it trying to find a ...
0
votes
3answers
170 views
Django - Insert Without Returning the Id of the Saved Object
Each time the save() method is called on a Django object, Django executes two queries one INSERT and one SELECT. In my case this is usefull except for some specific places where each query is ...
0
votes
0answers
124 views
I use Python(2.6) django(1.3) on CentOS and wanna connect with MSSQL 2000 howto? [closed]
I try using Pyodbc but now success.
Could anyone help me howto?
0
votes
1answer
143 views
django-mssql on debian linux
Anyone has success on install django-mssql on linux machine? My deploy server is debian linux and I cant deploy my applications made on windows machine.
I have troubes on my legacy latin1 database on ...
0
votes
3answers
2k views
ImportError: No module named pythoncom
am a newbie (jst 1 week) to this Python world, i tried installing django-mssql but when i tried importing the library ( import sqlserver_ado.dbapi ), i got "ImportError: No module named pythoncom" ...
0
votes
1answer
493 views
Error connecting to SQL Server 2008 with Django
I am using django-mssql and SQL Server 2008, but I found that it always errors when I do some
commands,for example:
python manage.py syncdb
the error is below:
raise OperationalError(e, "Error ...