2005-07-13 09:25:57 +08:00
"""
This is the core database connection .
All CMS 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
2005-07-18 04:03:24 +08:00
try :
dbmod = __import__ ( ' django.core.db.backends. %s ' % DATABASE_ENGINE , ' ' , ' ' , [ ' ' ] )
2005-07-21 21:57:42 +08:00
except ImportError , exc :
2005-07-20 03:04:12 +08:00
# The database backend wasn't found. Display a helpful error message
# listing all possible database backends.
2005-07-18 04:03:24 +08:00
from django . core . exceptions import ImproperlyConfigured
2005-07-20 03:04:12 +08:00
import os
backend_dir = os . path . join ( __path__ [ 0 ] , ' backends ' )
available_backends = [ f [ : - 3 ] for f in os . listdir ( backend_dir ) if f . endswith ( ' .py ' ) and not f . startswith ( ' __init__ ' ) ]
available_backends . sort ( )
2005-07-21 23:01:31 +08:00
raise ImproperlyConfigured , " Could not load database backend: %s . Is your DATABASE_ENGINE setting (currently, %r ) spelled correctly? Available options are: %s " % \
( exc , DATABASE_ENGINE , " , " . join ( map ( repr , available_backends ) ) )
2005-07-13 09:25:57 +08:00
DatabaseError = dbmod . DatabaseError
db = dbmod . DatabaseWrapper ( )
dictfetchone = dbmod . dictfetchone
dictfetchmany = dbmod . dictfetchmany
dictfetchall = dbmod . dictfetchall
dictfetchall = dbmod . dictfetchall
get_last_insert_id = dbmod . get_last_insert_id
2005-07-18 02:23:34 +08:00
get_date_extract_sql = dbmod . get_date_extract_sql
2005-07-18 04:16:06 +08:00
get_date_trunc_sql = dbmod . get_date_trunc_sql
2005-07-13 09:25:57 +08:00
OPERATOR_MAPPING = dbmod . OPERATOR_MAPPING
DATA_TYPES = dbmod . DATA_TYPES