On Wed, Jan 27, 2010 at 10:35 AM, Kevin Ar18 <kevina...@hotmail.com> wrote:
> The documentation says:
> "You can use a database backend that doesn't ship with Django by setting
> DATABASE_ENGINE to a fully-qualified path (i.e.
> mypackage.backends.whatever)."
>
> So, I installed PG8000.  It is an egg inside of "Python\Lib\site-packages"
> What should the path be?
> Or can I not use this one?
>
>
> Or should I do it this way?
> 1. Get a zip file version of PG8000
> 2. Put the PG8000 files in:
> Python\Lib\site-packages\django-1.1.1-py2.6.egg\django\db\backends\pg8000
> 3. Refer to it as: DATABASE_ENGINE = db.backends.pg8000
>
> Or is it more complicated?

Yes.

The fully-qualified path that Django asks you to provide is to a
Django database backend, not to a Python database binding.

Django has it's own API for communicating with databases (mostly to
abstract the eccentricities between databases). If you want to use
pg8000, you will need to find (or write) a library that implements the
Django database backend interface and talks to the pg8000 database
binding.

Yours,
Russ Magee %-)

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to