Django

Code

Changeset 382

Show
Ignore:
Timestamp:
08/01/05 16:40:13 (3 years ago)
Author:
adrian
Message:

Added 'Can I use Django with a pre-existing database?' to the FAQ

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/faq.txt

    r305 r382  
    279279    ``time`` -- How long the statement took to execute, in seconds. 
    280280 
     281Can I use Django with a pre-existing database? 
     282---------------------------------------------- 
     283 
     284Yes. For the time being, you can write models that describe your 
     285already-existing database layout, and just point Django at your database. 
     286 
     287We also plan to make this even easier: Soon, Django will be able to introspect 
     288your database and generate models from it. See `Ticket 90`_. 
     289 
     290.. _`Ticket 90`: http://code.djangoproject.com/ticket/90 
     291 
    281292The admin site 
    282293==============