Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
1k views

Is there any way to use GUIDs in django?

I have a couple of tables that are joined by GUIDs in SQL Server. Now, I've found a few custom fields to add support for GUIDs in django, but I tend to shy away from using code in blog posts if at ...
4
votes
1answer
529 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 ...
2
votes
1answer
1k views

Django-pyodbc SQL Server/freetds server connection problems on linux

Error: ('IM002', '[IM002] [unixODBC][Driver Manager]Data source name not found, and no default driver specified (0) (SQLDriverConnectW)') I'm migrating from developing on a windows ...
2
votes
1answer
523 views

MS Access backend for django

I've been working on a modification of the django-pyodbc package so that it could be used with MS Access. I need this for a legacy database we are tied to at my organization, and have been doing a ...
1
vote
0answers
110 views

Prevent Django from updating identity column in MSSQL

I'm working with a legacy DB in MSSQL. We have a table that has two columns that are causing me problems: class Emp(models.Model): empid = models.IntegerField(_("Unique ID"), unique=True, ...
1
vote
1answer
471 views

pyodbc on SQL Server - How can I do an insert and get the row ID back?

I'm using pyodbc with SQL Server 2000. I want to be able to insert a row and get the auto incremented row id value back? Any ideas? Here's what I have so far: cursor.execute("insert into ...
0
votes
0answers
131 views

Building a web-admin around an existing MS SQL table (python/django problem?)

We currently run an application that gets data from a MS SQL server, a table which is really not much more than an excel sheet we imported. I want to build a simple management shell around this table ...
0
votes
1answer
134 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
2answers
610 views

How to run Django on Windows and cope with Apache not having a daemon mode?

Evolution of this question This started as an attempt to find other recommendations for running Django on Linux, accessing SQL Server via Django-PyODBC, and supporting Unicode as competently as in ...