On Mon, 2007-06-11 at 17:21 -0500, Carl Karsten wrote:
[...]
> What all do I need to do to add a new backend?  basically, I want to try 
> using 
> pymssql (work on linux) instead of adodbapi (which I am assuming adodbapi 
> only 
> works on win?)

Add a new directory under django/db/backends/. It has to be in that
directory -- we don't support backends in other locations in the current
code. The name you give the directory is the name to use in your
settings file (the code does an import of that name from
django.db.backends).

Then implement base.py, client.py, introspection.py and creation.py --
each file serves a specific purpose. What they do should be very clear
from looking at an existing backend. For example, postgresql or sqlite.

You probably want to start with base.py (the main interface between
Django and the backend Python wrapper) and introspection.py (for your
purposes) and build up from there.

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to