On Thu, Apr 3, 2008 at 9:00 AM, Roland Hedberg <[EMAIL PROTECTED]> wrote:
> > Hi! > > I'd like to add the possibility to use a RDF store as database to Django. > > Where should I start ? > > I've made a brief walk-through the code and I'm not absolutely sure > about the right place to enter my changes and I'd like to be that before > attempting anything. > From: http://www.djangoproject.com/documentation/settings/#database-engine In the Django development version, 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). Writing a whole new database backend from scratch is left as an exercise to the reader; see the other backends for examples. There was a rather lengthy and spirited discussion on the developer's list recently about the lack of a more formal spec for writing a database backend, which might result in some better doc, but for right now the recommendation is to look at the code under django/db/backends for guidance on what you need to do. Karen --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---

