mirror of
https://github.com/django/django.git
synced 2024-12-25 10:35:48 +00:00
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:
parent
cee6faf43e
commit
c65332d409
@ -1,16 +1,11 @@
|
|||||||
"""
|
"""
|
||||||
This is the core database connection.
|
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
|
* booleans are mapped to Python booleans
|
||||||
* dates are mapped to Python datetime.date objects
|
* dates are mapped to Python datetime.date objects
|
||||||
* times are mapped to Python datetime.time objects
|
* times are mapped to Python datetime.time objects
|
||||||
* timestamps are mapped to Python datetime.datetime 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
|
from django.conf.settings import DATABASE_ENGINE
|
||||||
|
Loading…
Reference in New Issue
Block a user