Updated out-of-date docstring in django/core/db/__init__.py

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1038 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-11-01 01:28:42 +00:00
parent cee6faf43e
commit c65332d409
1 changed files with 1 additions and 6 deletions

View File

@ -1,16 +1,11 @@
"""
This is the core database connection.
All CMS code assumes database SELECT statements cast the resulting values as such:
All Django code assumes database SELECT statements cast the resulting values as such:
* booleans are mapped to Python booleans
* dates are mapped to Python datetime.date objects
* times are mapped to Python datetime.time objects
* timestamps are mapped to Python datetime.datetime objects
Right now, we're handling this by using psycopg's custom typecast definitions.
If we move to a different database module, we should ensure that it either
performs the appropriate typecasting out of the box, or that it has hooks that
let us do that.
"""
from django.conf.settings import DATABASE_ENGINE