app/django/contrib/gis/db/backend/oracle/creation.py
author Lennard de Rijk <ljvderijk@gmail.com>
Mon, 13 Jul 2009 00:59:11 +0200
changeset 2617 274efd5c769d
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Added methods to GradingRecord Logic to facilitate creating/updating them. UpdateOrCreateRecordsFor will batch put GradingRecords for a given SurveyGroup and StudentProject. getFieldsForGradingRecord will return the fields that need to be set for a single GradingRecord entity given a StudentProject, GradingSurveyGroup and if it is an update a GradingRecord entity.


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)