| 1 | | """ |
|---|
| 2 | | The Oracle spatial database backend module. |
|---|
| 3 | | |
|---|
| 4 | | Please note that WKT support is broken on the XE version, and thus |
|---|
| 5 | | this backend will not work on such platforms. Specifically, XE lacks |
|---|
| 6 | | support for an internal JVM, and Java libraries are required to use |
|---|
| 7 | | the WKT constructors. |
|---|
| 8 | | """ |
|---|
| 9 | | from django.contrib.gis.db.backend.oracle.creation import create_spatial_db |
|---|
| 10 | | from django.contrib.gis.db.backend.oracle.field import OracleSpatialField, gqn |
|---|
| 11 | | from django.contrib.gis.db.backend.oracle.query import \ |
|---|
| 12 | | get_geo_where_clause, ORACLE_SPATIAL_TERMS, \ |
|---|
| 13 | | ASGML, DISTANCE, GEOM_SELECT, TRANSFORM, UNION |
|---|
| 14 | | |
|---|