app/django/contrib/gis/db/backend/oracle/creation.py
author Sverre Rabbelier <srabbelier@gmail.com>
Mon, 09 Mar 2009 00:00:13 +0000
changeset 1761 cf39e8705fac
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Except and properly handle Errors in view decorator After the next release we can remove all try/except combinations that are not customized and leave the handling of those exceptions to the view decorator. Patch by: Sverre Rabbelier


def create_spatial_db(test=True, verbosity=1, autoclobber=False):
    "A wrapper over the Oracle `create_test_db` routine."
    if not test: raise NotImplementedError('This uses `create_test_db` from db/backends/oracle/creation.py')
    from django.db import connection
    connection.creation.create_test_db(verbosity, autoclobber)